mirror of
https://github.com/pygos/build.git
synced 2024-11-22 11:09:46 +01:00
7204b9dd75
Automagically strip all executables (recursively for subdirectories in lib and bin) inside the mk.sh build loop. This removes the necessity in the build scripts to strip the files. This also allows us to remove the error prone install-strip target from the build scripts. Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
50 lines
No EOL
1.5 KiB
Text
50 lines
No EOL
1.5 KiB
Text
VERSION="1.7.1"
|
|
SRCDIR="unbound-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.gz"
|
|
URL="https://www.unbound.net/downloads"
|
|
SHA256SUM="56e085ef582c5372a20207de179d0edb4e541e59f87be7d4ee1d00d12008628d"
|
|
DEPENDS="openssl expat libbsd"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
$1/configure --prefix="" --host="$TARGET" --disable-static \
|
|
--sysconfdir=/etc --with-pidfile=/run/unbound.pid \
|
|
--sbindir=/bin --with-libexpat="$TCDIR/$TARGET" \
|
|
--with-ssl="$TCDIR/$TARGET"
|
|
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local DEPLOY="$2"
|
|
local tag alg type digest
|
|
|
|
make DESTDIR="$DEPLOY" install
|
|
cp "$SCRIPTDIR/pkg/$PKGNAME/rootfs_files.txt" "$DEPLOY"
|
|
|
|
cat_file_override "unbound.conf" > "$DEPLOY/etc/unbound/unbound.conf"
|
|
|
|
echo "generating trust anchor root.key"
|
|
|
|
curl --silent -L https://data.iana.org/root-anchors/root-anchors.xml |\
|
|
sed ':a;N;$!ba;s/\n//g' |\
|
|
grep -o -P -e "<KeyDigest.*?</KeyDigest>" |\
|
|
while read line; do
|
|
tag=$(echo $line | grep -o -e "<KeyTag>[0-9]*</" | grep -o -w "[0-9]*")
|
|
alg=$(echo $line | grep -o -e "<Algorithm>[0-9]*</" | grep -o -w "[0-9]*")
|
|
type=$(echo $line | grep -o -e "<DigestType>[0-9]*</" | grep -o -w "[0-9]*")
|
|
digest=$(echo $line | grep -o -e "<Digest>[A-F0-9]*</" | grep -o -w "[A-F0-9]*")
|
|
|
|
echo ". IN DS $tag $alg $type $digest" >> "$DEPLOY/etc/unbound/root.key"
|
|
done
|
|
}
|
|
|
|
check_update() {
|
|
curl --silent -L "$URL" | grep -o ">unbound-[0-9.]*tar.gz<" | \
|
|
sed 's/>unbound-//g' | sed 's/.tar.gz<//g' | \
|
|
verson_find_greatest "$VERSION"
|
|
} |