diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/fcrackzip | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/fcrackzip')
-rw-r--r-- | community/fcrackzip/ChangeLog | 3 | ||||
-rw-r--r-- | community/fcrackzip/PKGBUILD | 28 |
2 files changed, 31 insertions, 0 deletions
diff --git a/community/fcrackzip/ChangeLog b/community/fcrackzip/ChangeLog new file mode 100644 index 000000000..811f87d4f --- /dev/null +++ b/community/fcrackzip/ChangeLog @@ -0,0 +1,3 @@ +2007-06-28 tardo <tardo@nagi-fanboi.net> +* Built for x86_64 + diff --git a/community/fcrackzip/PKGBUILD b/community/fcrackzip/PKGBUILD new file mode 100644 index 000000000..3c0fa15ad --- /dev/null +++ b/community/fcrackzip/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 67610 2012-03-13 14:10:18Z lcarlier $ +# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> +# Maintainer: Daenyth <Daenyth+Arch at gmail dot com> + +pkgname=fcrackzip +pkgver=1.0 +pkgrel=3 +pkgdesc="A zip file password cracker" +arch=('i686' 'x86_64') +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') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + + make DESTDIR=${pkgdir} install + mv ${pkgdir}/usr/bin/zipinfo ${pkgdir}/usr/bin/fzipinfo +} |