1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-08 23:06:14 +02:00

Remove defunct nettle and support libraries

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2018-09-02 14:25:42 +02:00
parent 7b9f5e34b3
commit 7f020c855b
5 changed files with 0 additions and 145 deletions

View file

@ -1,29 +0,0 @@
VERSION="1.15"
SRCDIR="libiconv-$VERSION"
TARBALL="${SRCDIR}.tar.gz"
URL="https://ftp.gnu.org/gnu/libiconv/"
SHA256SUM="ccf536620a45458d26ba83887a983b96827001e92a13847b45e4925cc8913178"
DEPENDS="toolchain"
prepare() {
return
}
build() {
$1/configure --prefix="" --host="$TARGET" --disable-static
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local DEPLOY="$2"
make DESTDIR="$DEPLOY" install
}
check_update() {
curl --silent -L "$URL" | grep -o ">libiconv-[0-9.]*tar.gz<" | \
sed 's/>libiconv-//g' | sed 's/.tar.gz<//g' | \
verson_find_greatest "$VERSION"
}

View file

@ -1,29 +0,0 @@
VERSION="2.0.5"
SRCDIR="libidn2-$VERSION"
TARBALL="${SRCDIR}.tar.gz"
URL="https://ftp.gnu.org/gnu/libidn"
SHA256SUM="53f69170886f1fa6fa5b332439c7a77a7d22626a82ef17e2c1224858bb4ca2b8"
DEPENDS="libiconv libunistring"
prepare() {
return
}
build() {
$1/configure --prefix="" --host="$TARGET" --disable-static
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local DEPLOY="$2"
make DESTDIR="$DEPLOY" install
}
check_update() {
curl --silent -L "$URL" | grep -o ">libidn2-[0-9.]*tar.gz<" | \
sed 's/>libidn2-//g' | sed 's/.tar.gz<//g' | \
verson_find_greatest "$VERSION"
}

View file

@ -1,29 +0,0 @@
VERSION="4.13"
SRCDIR="libtasn1-$VERSION"
TARBALL="libtasn1-$VERSION.tar.gz"
URL="https://ftp.gnu.org/gnu/libtasn1"
SHA256SUM="7e528e8c317ddd156230c4e31d082cd13e7ddeb7a54824be82632209550c8cca"
DEPENDS="toolchain"
prepare() {
return
}
build() {
$1/configure --prefix="" --host="$TARGET" --disable-static
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local DEPLOY="$2"
make DESTDIR="$DEPLOY" install
}
check_update() {
curl --silent -L "$URL" | grep -o ">libtasn1-[0-9.]*tar.gz<" | \
sed 's/>libtasn1-//g' | sed 's/.tar.gz<//g' | \
verson_find_greatest "$VERSION"
}

View file

@ -1,29 +0,0 @@
VERSION="0.9.10"
SRCDIR="libunistring-$VERSION"
TARBALL="${SRCDIR}.tar.xz"
URL="https://ftp.gnu.org/gnu/libunistring"
SHA256SUM="eb8fb2c3e4b6e2d336608377050892b54c3c983b646c561836550863003c05d7"
DEPENDS="libiconv"
prepare() {
return
}
build() {
$1/configure --prefix="" --host="$TARGET" --disable-static
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local DEPLOY="$2"
make DESTDIR="$DEPLOY" install
}
check_update() {
curl --silent -L "$URL" | grep -o ">libunistring-[0-9.]*tar.xz<" | \
sed 's/>libunistring-//g' | sed 's/.tar.xz<//g' | \
verson_find_greatest "$VERSION"
}

View file

@ -1,29 +0,0 @@
VERSION="3.4"
SRCDIR="nettle-${VERSION}"
TARBALL="${SRCDIR}.tar.gz"
URL="https://ftp.gnu.org/gnu/nettle/"
SHA256SUM="ae7a42df026550b85daca8389b6a60ba6313b0567f374392e54918588a411e94"
DEPENDS="gmp"
prepare() {
return
}
build() {
$1/configure --prefix="" --host="$TARGET" --disable-static
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local DEPLOY="$2"
make DESTDIR="$DEPLOY" install
}
check_update() {
curl --silent -L "$URL" | grep -o ">nettle-[0-9.]*tar.gz<" | \
sed 's/>nettle-//g' | sed 's/.tar.gz<//g' | \
verson_find_greatest "$VERSION"
}