2018-04-05 10:44:15 +02:00
|
|
|
VERSION="0.9.9"
|
2018-01-22 15:20:35 +01:00
|
|
|
SRCDIR="libunistring-$VERSION"
|
|
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
|
|
URL="https://ftp.gnu.org/gnu/libunistring"
|
2018-04-05 10:44:15 +02:00
|
|
|
SHA256SUM="a4d993ecfce16cf503ff7579f5da64619cee66226fb3b998dafb706190d9a833"
|
2018-01-24 12:52:41 +01:00
|
|
|
DEPENDS="libiconv"
|
2018-01-22 15:20:35 +01:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2018-02-16 23:22:04 +01:00
|
|
|
$1/configure --prefix="" --host="$TARGET" --disable-static
|
2018-01-22 15:20:35 +01:00
|
|
|
|
|
|
|
make -j $NUMJOBS
|
|
|
|
}
|
|
|
|
|
|
|
|
deploy() {
|
|
|
|
local SOURCE="$1"
|
2018-02-16 23:22:04 +01:00
|
|
|
local DEPLOY="$2"
|
|
|
|
local DEVDEPLOY="$3"
|
2018-01-22 15:20:35 +01:00
|
|
|
|
|
|
|
make DESTDIR="$DEPLOY" install-strip
|
|
|
|
|
|
|
|
rm -r "$DEPLOY/share"
|
2018-02-17 14:47:42 +01:00
|
|
|
rm "$DEPLOY/lib/charset.alias"
|
2018-01-22 15:20:35 +01:00
|
|
|
|
2018-02-10 01:57:53 +01:00
|
|
|
split_dev_deploy "$DEPLOY" "$DEVDEPLOY"
|
2018-01-22 15:20:35 +01:00
|
|
|
}
|
2018-05-06 17:23:31 +02:00
|
|
|
|
|
|
|
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"
|
|
|
|
}
|