blob: 2bd1254d5258d6cbaf60e58a7872bffa62803aa4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Librairie de cryptogriphie bas niveau
# URL: http://www.lysator.liu.se/~nisse/nettle/
# Packager: tnut at nutyx dot com
# Maintainer: NuTyX core team
name=nettle
version=2.4
release=1
source=(ftp://ftp.lysator.liu.se/pub/security/lsh/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--libdir=/usr/lib \
--enable-shared
make
make DESTDIR=$PKG install
}
|