diff options
author | Allan McRae <allan@archlinux.org> | 2016-02-02 02:38:42 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2016-02-26 06:18:43 +0100 |
commit | 1a29744d0da8aa945b96b234574e0d5c80f13b62 (patch) | |
tree | d8c7460efe96d4cd4f1ce1ee83b666b21b4a92fb /etc | |
parent | d4f499f5638a68a3b7e17c5171aabdf535b79bd4 (diff) | |
download | pacman-1a29744d0da8aa945b96b234574e0d5c80f13b62.tar.gz pacman-1a29744d0da8aa945b96b234574e0d5c80f13b62.tar.xz |
makepkg: Remove upx and optipng support
These options were added before libmakepkg allowed passes like this to be
dropped in. I prefer only real core packaging tasks to be included in
makepkg and additional things like this to be dropped in by a user or
distribution that wants to support them.
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/makepkg.conf.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/etc/makepkg.conf.in b/etc/makepkg.conf.in index 71ec624b..efac16ab 100644 --- a/etc/makepkg.conf.in +++ b/etc/makepkg.conf.in @@ -71,7 +71,7 @@ BUILDENV=(!distcc color !ccache check !sign) # These are default values for the options=() settings ######################################################################### # -# Default: OPTIONS=(strip docs libtool staticlibs emptydirs zipman purge !upx !optipng !debug) +# Default: OPTIONS=(strip docs libtool staticlibs emptydirs zipman purge !debug) # A negated option will do the opposite of the comments below. # #-- strip: Strip symbols from binaries/libraries @@ -81,11 +81,9 @@ BUILDENV=(!distcc color !ccache check !sign) #-- emptydirs: Leave empty directories in packages #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip #-- purge: Remove files specified by PURGE_TARGETS -#-- upx: Compress binary executable files using UPX -#-- optipng: Optimize PNG images with optipng #-- debug: Add debugging flags as specified in DEBUG_* variables # -OPTIONS=(strip docs libtool staticlibs emptydirs zipman purge !upx !optipng !debug) +OPTIONS=(strip docs libtool staticlibs emptydirs zipman purge !debug) #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512 INTEGRITY_CHECK=(md5) |