diff options
Diffstat (limited to 'buildrepo.in')
-rwxr-xr-x | buildrepo.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/buildrepo.in b/buildrepo.in index 5aa3e43..c211789 100755 --- a/buildrepo.in +++ b/buildrepo.in @@ -97,7 +97,9 @@ build() { oldindex="--index APKINDEX.tar.gz" fi tmpindex=$(mktemp).tar.gz - apk index $oldindex -o $tmpindex *.apk + apk index $oldindex -o $tmpindex \ + --description "$repo $(cd $aportsdir && git describe)" \ + *.apk abuild-sign $tmpindex && mv $tmpindex APKINDEX.tar.gz chmod 644 APKINDEX.tar.gz rm -f tmp.* |