diff options
-rw-r--r-- | development/Coin/Coin.SlackBuild | 39 | ||||
-rw-r--r-- | development/Coin/Coin.info | 2 |
2 files changed, 22 insertions, 19 deletions
diff --git a/development/Coin/Coin.SlackBuild b/development/Coin/Coin.SlackBuild index b80b641cb3533..cac32c1f2c4ea 100644 --- a/development/Coin/Coin.SlackBuild +++ b/development/Coin/Coin.SlackBuild @@ -6,27 +6,29 @@ # Versions >= 3.1.3 maintained by Niels Horn <niels.horn@gmail.com> # Revision date: 2010/07/10 +# 20220222 bkw: Modified by SlackBuilds.org, BUILD=2: +# - use correct github filename. +# - don't install useless INSTALL instructions in doc dir. +# - remove man pages with spaces in the filenames. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=Coin SRCNAM=coin VERSION=${VERSION:-4.0.0.f8a82c09bb5aa62702b9ed396067a25905571c82} COMMIT=f8a82c09bb5aa62702b9ed396067a25905571c82 -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; 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 @@ -36,8 +38,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" ARCHQUADLET="" elif [ "$ARCH" = "i686" ]; then @@ -63,15 +65,15 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz +rm -rf $SRCNAM-$COMMIT +tar xvf $CWD/$SRCNAM-$COMMIT.tar.gz cd $SRCNAM-$COMMIT 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 \ + -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + -exec chmod 644 {} \+ mkdir -p coin_build cd coin_build @@ -85,21 +87,22 @@ cd coin_build -DCMAKE_BUILD_TYPE=Release .. make - make install DESTDIR=$PKG + make install/strip DESTDIR=$PKG cd .. -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - mv $PKG/usr/share/man $PKG/usr/ mkdir -p $PKG/usr/man/man1 cp man/man1/coin-config.1 $PKG/usr/man/man1/ -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 + +# 20220225 bkw: man pages can't have spaces in the filenames. plus, these +# are empty of real content. +rm -f $PKG/usr/man/man3/*\ *.3 + +gzip -9 $PKG/usr/man/man*/* mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ - AUTHORS COPYING ChangeLog FAQ* INSTALL* NEWS RE* THANKS \ + AUTHORS COPYING ChangeLog FAQ* NEWS RE* THANKS \ $PKG/usr/doc/$PRGNAM-$VERSION mv $PKG/usr/share/doc/Coin/html $PKG/usr/doc/$PRGNAM-$VERSION rm -rf $PKG/usr/share/doc diff --git a/development/Coin/Coin.info b/development/Coin/Coin.info index 765ccbfbf614f..c203c0608bccd 100644 --- a/development/Coin/Coin.info +++ b/development/Coin/Coin.info @@ -1,7 +1,7 @@ PRGNAM="Coin" VERSION="4.0.0.f8a82c09bb5aa62702b9ed396067a25905571c82" HOMEPAGE="https://coin3d.github.io/" -DOWNLOAD="https://github.com/coin3d/coin/archive/f8a82c0/coin-4.0.0.f8a82c09bb5aa62702b9ed396067a25905571c82.tar.gz" +DOWNLOAD="https://github.com/coin3d/coin/archive/f8a82c0/coin-f8a82c09bb5aa62702b9ed396067a25905571c82.tar.gz" MD5SUM="17f98e2166a3189f7c8f2b783224bc0b" DOWNLOAD_x86_64="" MD5SUM_x86_64="" |