diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-11-16 17:24:41 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-11-16 17:24:41 +0000 |
commit | 3d6242ed7480526abcbc8c2687157933061b5b28 (patch) | |
tree | 9af64a60a7883d3fa75c5ed67c2d21cebb3bb8dc /etc | |
parent | 95358f7c5b10cdcb8ca2523ca86bd862a38476c1 (diff) | |
download | pacman-3d6242ed7480526abcbc8c2687157933061b5b28.tar.xz |
* makepkg.conf.in variable changes (missed the checkin)
* Better error reporting when unpacking an archive fails
* Fixed -Sc and -Scc cache dir opening/reading
Diffstat (limited to 'etc')
-rw-r--r-- | etc/makepkg.conf.in | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/etc/makepkg.conf.in b/etc/makepkg.conf.in index 7a75cdf3..a7ddaa0f 100644 --- a/etc/makepkg.conf.in +++ b/etc/makepkg.conf.in @@ -48,6 +48,8 @@ USE_COLOR="y" NOSTRIP=0 #-- Keep doc and info directories KEEPDOCS=0 +#-- Use ccache when building +USE_CCACHE=0 ######################################################################### # PACKAGE OUTPUT @@ -63,9 +65,14 @@ KEEPDOCS=0 # Most of this will probably not need to be changed by and end user ######################################################################### # +#-- Name of the script which makepkg reads BUILDSCRIPT="PKGBUILD" +#-- Extension of the resultant package PKGEXT="pkg.tar.gz" -INTEGRITY_CHECK="sha1" - +#-- File integrity checks to use. Valid: +# md5, sha1, sha256, sha384, sha512 +INTEGRITY_CHECK=(md5 sha1) +#-- The root to use when building from source source "/etc/abs/abs.conf" SRCROOT=$ABSROOT + |