diff options
Diffstat (limited to 'community/ccrypt/PKGBUILD')
-rw-r--r-- | community/ccrypt/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/ccrypt/PKGBUILD b/community/ccrypt/PKGBUILD new file mode 100644 index 000000000..c2960de0e --- /dev/null +++ b/community/ccrypt/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 6074 2009-11-29 08:39:09Z giovanni $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Giovanni Scafora <giovanni@archlinux.org> + +pkgname=ccrypt +pkgver=1.9 +pkgrel=1 +pkgdesc="A command-line utility for encrypting and decrypting files and streams" +arch=('i686' 'x86_64') +url="http://ccrypt.sourceforge.net" +license=('GPL2') +depends=('glibc') +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('c3f78019d7a166dd66f1d4b1390c62c2') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr --mandir=/usr/share/man + make || return 1 + make DESTDIR=$pkgdir install +} |