summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config8
1 files changed, 5 insertions, 3 deletions
diff --git a/config b/config
index 34869ab..179a2b9 100644
--- a/config
+++ b/config
@@ -1,3 +1,5 @@
+#/bin/bash # as a hint to editors
+
FTP_BASE="/srv/ftp"
PKGREPOS=()
PKGPOOL=''
@@ -20,13 +22,13 @@ REQUIRE_SIGNATURE=true
LOCK_DELAY=10
LOCK_TIMEOUT=300
-STAGING="$HOME/staging"
+[ -z "${STAGING:-}" ] && STAGING="$HOME/staging"
TMPDIR="/var/tmp"
ARCHES=(i686 x86_64)
DBEXT=".db.tar.gz"
FILESEXT=".files.tar.gz"
-PKGEXT="$(. $(librelib conf); load_files makepkg; echo "$PKGEXT")"
-SRCEXT="$(. $(librelib conf); load_files makepkg; echo "$SRCEXT")"
+PKGEXT=".pkg.tar.?z"
+SRCEXT=".src.tar.gz"
# Allowed licenses: get sourceballs only for licenses in this array
ALLOWED_LICENSES=('GPL' 'GPL1' 'GPL2' 'LGPL' 'LGPL1' 'LGPL2' 'LGPL2.1')