diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-22 13:20:29 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-04-22 13:20:29 -0400 |
commit | 97589cb1cf8637839186e230ad142cff88433446 (patch) | |
tree | f1c9ab01b3c561fd9106aeb016b5a586e2e1cd82 /libraries/bzrtp | |
parent | 1a4ab89e44b9aca72903b812982863a13a222e54 (diff) |
libraries/bzrtp: Fix docs.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'libraries/bzrtp')
-rw-r--r-- | libraries/bzrtp/bzrtp.SlackBuild | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/libraries/bzrtp/bzrtp.SlackBuild b/libraries/bzrtp/bzrtp.SlackBuild index 0f69d5f97eaf..1488852a4082 100644 --- a/libraries/bzrtp/bzrtp.SlackBuild +++ b/libraries/bzrtp/bzrtp.SlackBuild @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=bzrtp VERSION=${VERSION:-1.0.6} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -38,9 +38,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -64,7 +61,7 @@ else LIBDIRSUFFIX="" fi -DOCS="AUTHORS COPYING ChangeLog README.md NEWS $CWD/$PRGNAM.SlackBuild" +DOCS="AUTHORS COPYING README.md NEWS $CWD/$PRGNAM.SlackBuild" set -e @@ -77,9 +74,9 @@ 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 \ + -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 {} \+ ./autogen.sh CFLAGS="$SLKCFLAGS" \ @@ -99,10 +96,7 @@ LDFLAGS="-L/usr/lib${LIBDIRSUFFIX}" \ --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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION |