summaryrefslogtreecommitdiffstats
path: root/libraries/libucil/libucil.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/libucil/libucil.SlackBuild')
-rw-r--r--libraries/libucil/libucil.SlackBuild42
1 files changed, 29 insertions, 13 deletions
diff --git a/libraries/libucil/libucil.SlackBuild b/libraries/libucil/libucil.SlackBuild
index d52d6de5db..9857119e68 100644
--- a/libraries/libucil/libucil.SlackBuild
+++ b/libraries/libucil/libucil.SlackBuild
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for libucil
@@ -22,10 +22,17 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# 20220424 bkw: Modified by SlackBuilds.org, BUILD=3:
+# - remove broken symlink from doc dir.
+# - do not write outside of $TMP.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=libucil
VERSION=${VERSION:-20160609}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
#Source name and ID (GitHub).
SRCNAM=unicap
@@ -39,7 +46,11 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
@@ -64,15 +75,22 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $SRCNAM-$SRCVER
-tar xvzf $CWD/$SRCNAM-$SRCVER.tar.gz
+
+# 20220424 bkw: this tarball contains a symlink whose target
+# is /usr/share/gtk-doc/data/gtk-doc.make. Extracting the
+# tarball actually touches the file in /usr, so don't do that.
+# This script doesn't build the gtk stuff, so it doesn't matter
+# about the symlink.
+tar xvf $CWD/$SRCNAM-$SRCVER.tar.gz \
+ --wildcards --exclude='*/libunicapgtk/doc/libunicapgtk/gtk-doc.make'
cd $SRCNAM-$SRCVER/$PRGNAM
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \; -o \
+ -o -perm 511 \) -exec chmod 755 {} \+ -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
# Generate configuration files.
autoreconf --force --install
@@ -85,22 +103,20 @@ CFLAGS="$SLKCFLAGS" \
--build=$ARCH-slackware-linux
make
-make install DESTDIR=$PKG
-
-find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" \
- | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+make install-strip DESTDIR=$PKG
PRGSHR=$PKG/usr/share
PRGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
# Install documentation.
mkdir -p $PRGDOC
-cp -a ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL README $PRGDOC/
-ln -sf /usr/share/gtk-doc/html/$PRGNAM $PRGDOC/html
+cp -a AUTHORS COPYING ChangeLog README $PRGDOC/
cat $CWD/$PRGNAM.SlackBuild > $PRGDOC/$PRGNAM.SlackBuild
+rm -f $PKG/usr/lib*/*.la
+
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE