mirror of
https://github.com/pygos/build.git
synced 2024-11-05 03:27:10 +01:00
Add nettle package
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
931157747d
commit
7c15b288ff
2 changed files with 32 additions and 0 deletions
31
pkg/nettle/build
Executable file
31
pkg/nettle/build
Executable 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
1
pkg/nettle/depends
Normal file
|
@ -0,0 +1 @@
|
|||
gmp
|
Loading…
Reference in a new issue