diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-05 05:51:32 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-05 05:51:32 (GMT) |
commit | 3f61d8348ecb847dcfc03cb2dd73c79bcd11712d (patch) | |
tree | c7a2b37648873e8ad4cf750a18d1e3404422468a /abs/core-testing/pacman/makepkg.conf | |
parent | 1e3c58d18dbbc867ce3fd44f1f32119fe04d5543 (diff) | |
download | linhes_pkgbuild-3f61d8348ecb847dcfc03cb2dd73c79bcd11712d.zip linhes_pkgbuild-3f61d8348ecb847dcfc03cb2dd73c79bcd11712d.tar.gz linhes_pkgbuild-3f61d8348ecb847dcfc03cb2dd73c79bcd11712d.tar.bz2 |
pacman:Bumped/Updated for LinHES 7.
Diffstat (limited to 'abs/core-testing/pacman/makepkg.conf')
-rw-r--r-- | abs/core-testing/pacman/makepkg.conf | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/abs/core-testing/pacman/makepkg.conf b/abs/core-testing/pacman/makepkg.conf index 12cfebd..ff08a0f 100644 --- a/abs/core-testing/pacman/makepkg.conf +++ b/abs/core-testing/pacman/makepkg.conf @@ -72,6 +72,12 @@ OPTIONS=(strip docs libtool emptydirs zipman purge) #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512 INTEGRITY_CHECK=(md5) +#-- Options to be used when stripping binaries. See `man strip' for details. +STRIP_BINARIES="--strip-all" +#-- Options to be used when stripping shared libraries. See `man strip' for details. +STRIP_SHARED="--strip-unneeded" +#-- Options to be used when stripping static libraries. See `man strip' for details. +STRIP_STATIC="--strip-debug" #-- Manual (man and info) directories to compress (if zipman is specified) MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info}) #-- Doc directories to remove (if !docs is specified) @@ -91,6 +97,8 @@ PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod) #PKGDEST=/home/packages #-- Source cache: specify a fixed directory where source files will be cached #SRCDEST=/home/sources +#-- Source packages: specify a fixed directory where all src packages will be placed +#SRCPKGDEST=/home/srcpackages #-- Packager: name/email of the person or organization building packages #PACKAGER="John Doe <john@doe.com>" @@ -101,7 +109,7 @@ PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod) # WARNING: Do NOT modify these variables unless you know what you are # doing. # -PKGEXT='.pkg.tar.gz' +PKGEXT='.pkg.tar.xz' SRCEXT='.src.tar.gz' # vim: set ft=sh ts=2 sw=2 et: |