2018-02-09 18:49:17 +01:00
|
|
|
apply_patches() {
|
|
|
|
local PATCH
|
|
|
|
|
2018-02-15 23:47:54 +01:00
|
|
|
for PATCH in $SCRIPTDIR/pkg/$PKGNAME/*.patch; do
|
|
|
|
if [ -f $PATCH ]; then
|
|
|
|
patch -p1 < $PATCH
|
|
|
|
fi
|
2018-02-09 18:49:17 +01:00
|
|
|
done
|
|
|
|
}
|
2018-02-10 01:57:53 +01:00
|
|
|
|
2018-02-15 14:24:53 +01:00
|
|
|
strip_files() {
|
|
|
|
local f
|
|
|
|
|
|
|
|
for f in $@; do
|
2018-06-17 16:08:11 +02:00
|
|
|
[ ! -L "$f" ] || continue;
|
|
|
|
|
|
|
|
if [ -d "$f" ]; then
|
|
|
|
strip_files ${f}/*
|
2018-02-15 14:24:53 +01:00
|
|
|
fi
|
|
|
|
|
2018-06-17 16:08:11 +02:00
|
|
|
[ -f "$f" ] || continue;
|
|
|
|
|
2018-02-15 14:24:53 +01:00
|
|
|
if file $f | grep -q -i elf; then
|
|
|
|
${TARGET}-strip --discard-all "$f"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2018-06-17 13:28:18 +02:00
|
|
|
deploy_dev_cleanup() {
|
|
|
|
local f
|
2018-02-10 01:57:53 +01:00
|
|
|
|
2018-02-19 12:43:22 +01:00
|
|
|
if [ -d "$1/share/pkgconfig" ]; then
|
2018-06-17 13:28:18 +02:00
|
|
|
mkdir -p "$1/lib/pkgconfig"
|
|
|
|
mv $1/share/pkgconfig/* "$1/lib/pkgconfig"
|
2018-03-07 16:50:50 +01:00
|
|
|
rmdir "$1/share/pkgconfig"
|
2018-02-19 12:43:22 +01:00
|
|
|
fi
|
|
|
|
|
2018-02-15 14:33:55 +01:00
|
|
|
for f in ${1}/lib/*.la; do
|
2018-06-17 13:28:18 +02:00
|
|
|
[ ! -e "$f" ] || rm "$f"
|
2018-02-10 01:57:53 +01:00
|
|
|
done
|
|
|
|
}
|
2018-05-19 21:13:51 +02:00
|
|
|
|
|
|
|
unfuck_libtool() {
|
|
|
|
local libdir="$PKGDEPLOYDIR/$PKGNAME/lib"
|
|
|
|
local f
|
|
|
|
|
|
|
|
for f in $(find $PKGBUILDDIR -type f -name '*.la'); do
|
|
|
|
sed -i "s#libdir='.*'#libdir='$libdir'#g" "$f";
|
|
|
|
done
|
|
|
|
|
|
|
|
sed -i -r "s/(finish_cmds)=.*$/\1=\"\"/" "$PKGBUILDDIR/libtool"
|
|
|
|
sed -i -r "s/(hardcode_into_libs)=.*$/\1=no/" "$PKGBUILDDIR/libtool"
|
|
|
|
}
|