summaryrefslogtreecommitdiffstats
path: root/system/afpfs-ng
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2016-03-10 04:57:27 +0100
committer Willy Sudiarto Raharjo2016-03-11 07:24:27 +0100
commit35129615dba57080a6b9ddc5bda67333ac361eb8 (patch)
tree04e61a980811f32895296da007fcf8fddfba2ef1 /system/afpfs-ng
parentb6be69afa2026ad1b4c38c763726bbdeae8ca17a (diff)
downloadslackbuilds-35129615dba57080a6b9ddc5bda67333ac361eb8.tar.gz
system/afpfs-ng: Include headers.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/afpfs-ng')
-rw-r--r--system/afpfs-ng/afpfs-ng.SlackBuild23
1 files changed, 15 insertions, 8 deletions
diff --git a/system/afpfs-ng/afpfs-ng.SlackBuild b/system/afpfs-ng/afpfs-ng.SlackBuild
index 46702ecacb..99ca7c533a 100644
--- a/system/afpfs-ng/afpfs-ng.SlackBuild
+++ b/system/afpfs-ng/afpfs-ng.SlackBuild
@@ -24,7 +24,7 @@
PRGNAM=afpfs-ng
VERSION=${VERSION:-0.8.1}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -64,10 +64,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
cd $PRGNAM-$VERSION
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 \
- \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -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 {} \;
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
@@ -78,11 +78,20 @@ CXXFLAGS="$SLKCFLAGS" \
--localstatedir=/var \
--mandir=/usr/man \
--docdir=/usr/doc/$PRGNAM-$VERSION \
+ --disable-static \
--build=$ARCH-slackware-linux
make
make install DESTDIR=$PKG
+# Copy the header files
+mkdir -p $PKG/usr/include/$PRGNAM
+cd include
+for HEADER in *.h; do
+install -Dm644 "$HEADER" "$PKG/usr/include/$PRGNAM/$HEADER"
+done
+cd ..
+
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
@@ -90,9 +99,7 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- README FUTURE NEWS ChangeLog AUTHORS COPYING INSTALL TODO \
- $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a README FUTURE NEWS ChangeLog AUTHORS COPYING INSTALL TODO $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install