diff options
Diffstat (limited to 'source/l')
-rwxr-xr-x | source/l/gvfs/gvfs.SlackBuild | 2 | ||||
-rwxr-xr-x | source/l/libgpod/libgpod.SlackBuild | 2 | ||||
-rwxr-xr-x | source/l/libimobiledevice/libimobiledevice.SlackBuild | 6 | ||||
-rwxr-xr-x | source/l/libplist/libplist.SlackBuild | 9 | ||||
-rwxr-xr-x | source/l/libusbmuxd/libusbmuxd.SlackBuild | 5 |
5 files changed, 22 insertions, 2 deletions
diff --git a/source/l/gvfs/gvfs.SlackBuild b/source/l/gvfs/gvfs.SlackBuild index f0f423b6..2589fcb3 100755 --- a/source/l/gvfs/gvfs.SlackBuild +++ b/source/l/gvfs/gvfs.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=gvfs VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} diff --git a/source/l/libgpod/libgpod.SlackBuild b/source/l/libgpod/libgpod.SlackBuild index 9232ff25..fc408347 100755 --- a/source/l/libgpod/libgpod.SlackBuild +++ b/source/l/libgpod/libgpod.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=libgpod VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-6} +BUILD=${BUILD:-7} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/source/l/libimobiledevice/libimobiledevice.SlackBuild b/source/l/libimobiledevice/libimobiledevice.SlackBuild index 09aa21f3..c8d0e373 100755 --- a/source/l/libimobiledevice/libimobiledevice.SlackBuild +++ b/source/l/libimobiledevice/libimobiledevice.SlackBuild @@ -82,6 +82,7 @@ if [ ! -r configure ]; then NOCONFIGURE=1 ./autogen.sh fi +PYTHON=/usr/bin/python3 \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -100,6 +101,11 @@ make install DESTDIR=$PKG || exit 1 # Don't ship .la files: rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la +# Provide a symlink from the old pkgconfig name: +( cd $PKG/usr/lib${LIBDIRSUFFIX}/pkgconfig + ln -sf libimobiledevice-1.*.pc libimobiledevice.pc +) + # Strip binaries: find $PKG | xargs file | grep -e "executable" -e "shared object" \ | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null diff --git a/source/l/libplist/libplist.SlackBuild b/source/l/libplist/libplist.SlackBuild index f64263e9..7f4be02a 100755 --- a/source/l/libplist/libplist.SlackBuild +++ b/source/l/libplist/libplist.SlackBuild @@ -109,12 +109,21 @@ CXXFLAGS="$SLKCFLAGS" \ --disable-static \ --build=$ARCH-slackware-linux || exit 1 +# Hack this to link with -lm: +sed -i "s/LIBS = -lpthread/LIBS = -lpthread -lm/g" src/Makefile + make $NUMJOBS || make || exit 1 make install DESTDIR=$PKG || exit 1 # Don't ship .la files: rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la +# Provide symlinks from the old pkgconfig names: +( cd $PKG/usr/lib${LIBDIRSUFFIX}/pkgconfig + ln -sf libplist++-2.*.pc libplist++.pc + ln -sf libplist-2.*.pc libplist.pc +) + # Strip binaries: find $PKG | xargs file | grep -e "executable" -e "shared object" \ | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null diff --git a/source/l/libusbmuxd/libusbmuxd.SlackBuild b/source/l/libusbmuxd/libusbmuxd.SlackBuild index d54b1779..d2f4d6e0 100755 --- a/source/l/libusbmuxd/libusbmuxd.SlackBuild +++ b/source/l/libusbmuxd/libusbmuxd.SlackBuild @@ -100,6 +100,11 @@ make install DESTDIR=$PKG || exit 1 # Don't ship .la files: rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la +# Provide a symlink from the old pkgconfig name: +( cd $PKG/usr/lib${LIBDIRSUFFIX}/pkgconfig + ln -sf libusbmuxd-2.*.pc libusbmuxd.pc +) + # Strip binaries: find $PKG | xargs file | grep -e "executable" -e "shared object" \ | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null |