very basic checking so far

git-svn-id: http://projects.xennet.org/archtools/checkpkg/trunk@105 630f3fb4-fbd1-0310-a574-b293cca3120f
This commit is contained in:
Jason Chu 2004-06-24 20:32:57 +00:00
parent 8b2d479773
commit 7206b11211
1 changed files with 30 additions and 0 deletions

View File

@ -1,3 +1,33 @@
#!/bin/bash
strip_url() {
echo $1 | sed 's|^.*://.*/||g'
}
if [ ! -f PKGBUILD ]; then
echo "This must be run in the directory of a built package."
exit 1
fi
source PKGBUILD
if [ ! -f $pkgname-$pkgver-$pkgrel.pkg.tar.gz ]; then
echo "You must have a built package to check."
exit 1
fi
pkgurl=`yes | pacman -Sp $pkgname | rev | cut -d ' ' -f 1 | rev`
oldpkg=`strip_url $pkgurl`
if [ ! -f $oldpkg ]; then
wget $pkgurl
fi
tar tzf $oldpkg > filelist-old
tar tzf $pkgname-$pkgver-$pkgrel.pkg.tar.gz > filelist
sort -o filelist filelist
sort -o filelist-old filelist
diff filelist-old filelist