aboutsummaryrefslogtreecommitdiff
path: root/system/xar
diff options
context:
space:
mode:
Diffstat (limited to 'system/xar')
-rw-r--r--system/xar/xar.SlackBuild14
1 files changed, 11 insertions, 3 deletions
diff --git a/system/xar/xar.SlackBuild b/system/xar/xar.SlackBuild
index c2879c6d63c99..ea3c626644af0 100644
--- a/system/xar/xar.SlackBuild
+++ b/system/xar/xar.SlackBuild
@@ -13,19 +13,26 @@
# bother me.
# The original google code project is dead, and so is mackyle's github
-# project. The Apple project might be deprecated, but it was last
-# updated in 2020, so it's at least not ancient history.
+# project. The Apple project might be deprecated, but it's still being
+# updated.
# For some reason, gentoo and other distros want to give this the
# version number "1.8.0.0.452". Dunno where the extra zeroes come
# from. "xar --version" reports "1.8dev", the tarball's version
# number is the SVN revision, 452...
+# 20221229 bkw: this is still being developed, code is at
+# https://github.com/apple-oss-distributions/xar/ but the latest tag
+# (494) won't compile, and I don't love this enough to spend time on
+# it right now. If it bothers you, fix it and send me a patch.
+
+# 20221229 bkw: BUILD=2, strip library (derp!)
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=xar
VERSION=${VERSION:-1.8dev+452}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -107,6 +114,7 @@ make
make install DESTDIR=$PKG
gzip $PKG/usr/man/man?/*
rm -f $PKG/usr/lib*/*.la
+strip $PKG/usr/lib*/*.so*
cd -