Date: Sunday, September 29, 2013 @ 17:19:40 Author: arodseth Revision: 97773
Adopted the package. Minor changes. Modified: fcrackzip/trunk/PKGBUILD Deleted: fcrackzip/trunk/ChangeLog -----------+ ChangeLog | 3 --- PKGBUILD | 25 ++++++++++++++----------- 2 files changed, 14 insertions(+), 14 deletions(-) Deleted: ChangeLog =================================================================== --- ChangeLog 2013-09-29 15:11:39 UTC (rev 97772) +++ ChangeLog 2013-09-29 15:19:40 UTC (rev 97773) @@ -1,3 +0,0 @@ -2007-06-28 tardo <[email protected]> -* Built for x86_64 - Modified: PKGBUILD =================================================================== --- PKGBUILD 2013-09-29 15:11:39 UTC (rev 97772) +++ PKGBUILD 2013-09-29 15:19:40 UTC (rev 97773) @@ -1,20 +1,21 @@ # $Id$ +# Maintainer: Alexander Rødseth <[email protected]> # Contributor: Jaroslaw Swierczynski <[email protected]> -# Maintainer: Daenyth <Daenyth+Arch at gmail dot com> +# Contributor: Daenyth <Daenyth+Arch at gmail dot com> pkgname=fcrackzip pkgver=1.0 -pkgrel=3 -pkgdesc="A zip file password cracker" -arch=('i686' 'x86_64') +pkgrel=4 +pkgdesc='Zip file password cracker' +arch=('x86_64' 'i686') url="http://oldhome.schmorp.de/marc/$pkgname.html" license=('GPL') -depends=(glibc) -source=(http://oldhome.schmorp.de/marc/data/$pkgname-$pkgver.tar.gz) -md5sums=('254941f51759f9425965f4b05fe7ac2c') +depends=('glibc') +source=("http://oldhome.schmorp.de/marc/data/$pkgname-$pkgver.tar.gz") +sha256sums=('254941f51759f9425965f4b05fe7ac2c') build() { - cd ${srcdir}/$pkgname-$pkgver + cd "$pkgname-$pkgver" ./configure --prefix=/usr make @@ -21,8 +22,10 @@ } package() { - cd ${srcdir}/$pkgname-$pkgver + cd "$pkgname-$pkgver" - make DESTDIR=${pkgdir} install - mv ${pkgdir}/usr/bin/zipinfo ${pkgdir}/usr/bin/fzipinfo + make DESTDIR="$pkgdir" install + mv "$pkgdir/usr/bin/zipinfo" "$pkgdir/usr/bin/fzipinfo" } + +# vim:set ts=2 sw=2 et:
