diff options
author | root <root@rshg054.dnsready.net> | 2013-09-30 03:05:25 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-09-30 03:05:25 -0700 |
commit | a1ba981700ea6943bedc5d7bb769b1f893088c7f (patch) | |
tree | deb2c7698ce6657abf503fedca9ad6d519a56b8b /community/fcrackzip | |
parent | 5a54e0a093cd01d4787eaf200ba14cfda3bc4b7a (diff) |
Mon Sep 30 02:50:34 PDT 2013
Diffstat (limited to 'community/fcrackzip')
-rw-r--r-- | community/fcrackzip/ChangeLog | 3 | ||||
-rw-r--r-- | community/fcrackzip/PKGBUILD | 27 |
2 files changed, 15 insertions, 15 deletions
diff --git a/community/fcrackzip/ChangeLog b/community/fcrackzip/ChangeLog deleted file mode 100644 index 811f87d4f..000000000 --- a/community/fcrackzip/ChangeLog +++ /dev/null @@ -1,3 +0,0 @@ -2007-06-28 tardo <tardo@nagi-fanboi.net> -* Built for x86_64 - diff --git a/community/fcrackzip/PKGBUILD b/community/fcrackzip/PKGBUILD index 3c0fa15ad..efc742847 100644 --- a/community/fcrackzip/PKGBUILD +++ b/community/fcrackzip/PKGBUILD @@ -1,28 +1,31 @@ -# $Id: PKGBUILD 67610 2012-03-13 14:10:18Z lcarlier $ +# $Id: PKGBUILD 97775 2013-09-29 15:22:35Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> -# 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=('4a58c8cb98177514ba17ee30d28d4927918bf0bdc3c94d260adfee44d2d43850') build() { - cd ${srcdir}/$pkgname-$pkgver + cd "$pkgname-$pkgver" ./configure --prefix=/usr make } 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: |