1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-25 20:50:13 +02:00

Add nettle package

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2018-01-22 20:51:10 +01:00
parent 931157747d
commit 7c15b288ff
2 changed files with 32 additions and 0 deletions

31
pkg/nettle/build Executable file
View file

@ -0,0 +1,31 @@
VERSION="3.4"
SRCDIR="nettle-${VERSION}"
TARBALL="${SRCDIR}.tar.gz"
URL="https://ftp.gnu.org/gnu/nettle/"
SHA256SUM="ae7a42df026550b85daca8389b6a60ba6313b0567f374392e54918588a411e94"
prepare() {
return
}
build() {
local SOURCE="$1"
local BUILD="$2"
$SOURCE/configure --prefix="" --host="$TARGET" --disable-static
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local BUILD="$2"
local DEPLOY="$3"
local DEVDEPLOY="$4"
make DESTDIR="$DEPLOY" install
mv "$DEPLOY/include" "$DEVDEPLOY"
cp -r "$DEPLOY/lib" "$DEVDEPLOY"
rm -r "$DEPLOY/lib/pkgconfig"
}

1
pkg/nettle/depends Normal file
View file

@ -0,0 +1 @@
gmp