diff options
Diffstat (limited to 'librerepkg')
-rwxr-xr-x[-rw-r--r--] | librerepkg | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/librerepkg b/librerepkg index 53751e4..22c237d 100644..100755 --- a/librerepkg +++ b/librerepkg @@ -32,10 +32,21 @@ fi source /etc/makepkg.conf source /etc/abs.conf +source rePKGBUILD + +usage() { + echo "cd to a dir with a rePKGBUILD and other file info and run" + echo $0 +} stdnull "tempdir=$(mktemp -d /tmp/$(basename $PWD).XXXXX)" -cp rePKGBUILD ${tempdir}/PKGBUILD -pushd ${tempdir} -msg Building using libremakepkg +msg "Repackaging: $pkgname $pkgver-$pkgrel ($(date -u))" +cp ./* ${tempdir}/ +stdnull "pushd ${tempdir}" +mv rePKGBUILD PKGBUILD +msg2 "Updating md5sums" +makepkg -g >> PKGBUILD +msg "Repackaging using libremakepkg" sudo libremakepkg + |