summaryrefslogtreecommitdiff
path: root/community/fcrackzip/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/fcrackzip/PKGBUILD')
-rw-r--r--community/fcrackzip/PKGBUILD27
1 files changed, 15 insertions, 12 deletions
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: