diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/makepkg.conf.in | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/etc/makepkg.conf.in b/etc/makepkg.conf.in index 73f8956d..eda822a1 100644 --- a/etc/makepkg.conf.in +++ b/etc/makepkg.conf.in @@ -55,6 +55,8 @@ KEEPDOCS=0 NOLIBTOOL=0 #-- Don't remove empty directories from package? NOEMPTYDIRS=0 +#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512 +INTEGRITY_CHECK=(md5) ######################################################################### @@ -63,22 +65,7 @@ NOEMPTYDIRS=0 # #-- Destination: specify a fixed directory where all packages will be placed #PKGDEST=/home/packages +#-- Source cache: specify a fixed directory where source files will be cached +#SRCDEST=/home/source #-- Packager: name/email of the person or organization building packages #PACKAGER="John Doe <john@doe.com>" - -######################################################################### -# Functionality Configuration -# Most of this will probably not need to be changed by an end user -######################################################################### -# -#-- Name of the script which makepkg reads -BUILDSCRIPT="PKGBUILD" -#-- Extension of the resultant package -PKGEXT="pkg.tar.gz" -#-- 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 - |