mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
72 lines
1.8 KiB
Bash
72 lines
1.8 KiB
Bash
#!/bin/sh
|
|
|
|
# Slackware build script for jbigkit
|
|
# Written by Iskar Enev <iskar.enev[@]gmail.com>
|
|
|
|
PRGNAM=jbigkit
|
|
VERSION=1.6
|
|
ARCH=${ARCH:-i486}
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-_SBo}
|
|
|
|
CWD=$(pwd)
|
|
TMP=${TMP:-/tmp/SBo}
|
|
PKG=$TMP/package-$PRGNAM
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
if [ "$ARCH" = "i486" ]; then
|
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
fi
|
|
|
|
set -e
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP
|
|
rm -rf $PRGNAM
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
|
cd $PRGNAM
|
|
chown -R root:root .
|
|
chmod -R u+w,go+r-w,a-s .
|
|
|
|
# Build the shared library first
|
|
cd libjbig
|
|
make libjbig.a CFLAGS="$SLKCFLAGS"
|
|
gcc -shared -o libjbig.so.$VERSION -Wl,-soname=libjbig.so.$VERSION \
|
|
$(ar t libjbig.a)
|
|
ln -snf libjbig.so.$VERSION libjbig.so
|
|
make clean
|
|
cd -
|
|
|
|
# ... and all the rest
|
|
make CCFLAGS="$SLKCFLAGS"
|
|
|
|
# Test the compiled tools - this is optional
|
|
# LD_LIBRARY_PATH=$CWD/libjbig make test
|
|
|
|
( cd $PKG
|
|
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
|
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
)
|
|
|
|
# There is no "install" target in the Makefile...
|
|
|
|
mkdir -p $PKG/usr/{bin,lib,include,man/man1,doc/$PRGNAM-$VERSION}
|
|
|
|
cp -a pbmtools/{jbgtopbm,pbmtojbg} $PKG/usr/bin
|
|
cp -a pbmtools/*.1 $PKG/usr/man/man1
|
|
gzip -9 $PKG/usr/man/man1/*.1
|
|
cp -a libjbig/jbig.h $PKG/usr/include
|
|
cp -a libjbig/libjbig.* $PKG/usr/lib
|
|
|
|
cp -a ANNOUNCE CHANGES INSTALL $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cp -a libjbig/jbig.doc $PKG/usr/doc/$PRGNAM-$VERSION/jbig.txt
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
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.tgz
|