From 09a93b2e0e8d603328c484a92cad90a1558c6f89 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Sat, 11 Feb 2012 19:48:59 +1000 Subject: makepkg: allow specifying compression options Adds the ability to override the commands used to compressing compiled and source packages. This is useful for those wanting to use alternative implementations of the compression tools or non-default compression options. Allan: documented options in man page Signed-off-by: Allan McRae --- etc/makepkg.conf.in | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'etc') diff --git a/etc/makepkg.conf.in b/etc/makepkg.conf.in index e9152c8b..6c87ea4c 100644 --- a/etc/makepkg.conf.in +++ b/etc/makepkg.conf.in @@ -106,6 +106,16 @@ PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod) #-- Specify a key to use for package signing #GPGKEY="" +######################################################################### +# COMPRESSION DEFAULTS +######################################################################### +# +COMPRESSGZ=(gzip -c -f -n) +COMPRESSBZ2=(bzip2 -c -f) +COMPRESSXZ=(xz -c -z -) +COMPRESSZ=(compress -c -f) + + ######################################################################### # EXTENSION DEFAULTS ######################################################################### -- cgit v1.2.3-24-g4f1b