You are not logged in.
Pages: 1
Filename:
beecrypt.tar.gz
Contents:
PKGBUILD
beecrypt-3.1.0-1.pkg.tar.gz
filelist
Description: (from website)
BeeCrypt is an ongoing project to provide a strong and fast cryptography toolkit. Includes entropy sources, random generators, block ciphers, hash functions, message authentication codes, multiprecision integer routines, and public key primitives.
PKGBUILD: (ho hum)
# Contributor: Michael Baehr <usemike@spamblocked.com>
pkgname=beecrypt
pkgver=3.1.0
pkgrel=1
pkgdesc="A swiss-army-knife of cryptography toolkits"
url="http://beecrypt.virtualunlimited.com/"
depends=('glibc')
source=("http://heanet.dl.sourceforge.net/sourceforge/beecrypt/${pkgname}-$pkgver.tar.gz")
md5sums=('1472cada46e2ab9f532f984de9740386')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install || return 1
}
Offline
Pages: 1