PKGBUILDs/community/ccrypt/PKGBUILD

22 lines
634 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
pkgname=ccrypt
pkgver=1.8
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=('c8be3f35b8dddf3310ca043cd9817620')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --mandir=/usr/share/man
make || return 1
make DESTDIR=$pkgdir install
}