2014-10-18 00:42:47 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2015-01-03 05:47:59 +01:00
|
|
|
# Slackware build script for mozjpeg
|
|
|
|
|
2017-03-10 21:44:12 +01:00
|
|
|
# Originally written by:
|
2017-05-03 20:22:27 +02:00
|
|
|
# Ryan P.C. McQuen | Everett, WA | <email removed>
|
2014-10-18 00:42:47 +02:00
|
|
|
|
2017-03-10 21:44:12 +01:00
|
|
|
# Now maintained by B. Watson (yalhcru@gmail.com)
|
|
|
|
|
2014-10-18 00:42:47 +02:00
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2015-09-10 23:05:06 +02:00
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
2014-10-18 00:42:47 +02:00
|
|
|
# (at your option) any later version, with the following exception:
|
|
|
|
# the text of the GPL license may be omitted.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# without any warranty; without even the implied warranty of
|
|
|
|
# merchantability or fitness for a particular purpose. Compiling,
|
|
|
|
# interpreting, executing or merely reading the text of the program
|
|
|
|
# may result in lapses of consciousness and/or very being, up to and
|
|
|
|
# including the end of all existence and the Universe as we know it.
|
|
|
|
# See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You may have received a copy of the GNU General Public License along
|
|
|
|
# with this program (most likely, a file named COPYING). If not, see
|
|
|
|
# <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-05-03 20:22:27 +02:00
|
|
|
# 20170502 bkw:
|
|
|
|
# - update for v3.2. script tested with v3.1 and still works, in case
|
|
|
|
# upstream's updated libjpegturbo API causes a problem (just get the
|
|
|
|
# old source, run with VERSION=3.1 in the env).
|
|
|
|
# - Note: ignore the 'error: ignoring unknown tag NASM' messages, per
|
|
|
|
# https://sourceforge.net/p/libjpeg-turbo/mailman/message/34381375/
|
|
|
|
|
2017-03-10 21:44:12 +01:00
|
|
|
# 20170310 bkw:
|
|
|
|
# - take over maintenance
|
|
|
|
# - i486 => i586
|
|
|
|
# - build static lib also
|
|
|
|
# - expand README and slack-desc
|
|
|
|
# - add JAVA=yes option
|
|
|
|
# - add API=7 and API=8 options
|
|
|
|
# - BUILD=2
|
|
|
|
|
2014-10-18 00:42:47 +02:00
|
|
|
PRGNAM=mozjpeg
|
2017-05-03 20:22:27 +02:00
|
|
|
VERSION=${VERSION:-3.2}
|
|
|
|
BUILD=${BUILD:-1}
|
2014-10-18 00:42:47 +02:00
|
|
|
TAG=${TAG:-_SBo}
|
|
|
|
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2017-03-10 21:44:12 +01:00
|
|
|
i?86) ARCH=i586 ;;
|
2014-10-18 00:42:47 +02:00
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
|
|
|
CWD=$(pwd)
|
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
2017-03-10 21:44:12 +01:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2014-10-18 00:42:47 +02:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
|
|
|
rm -rf $PRGNAM-$VERSION
|
2017-03-10 21:44:12 +01:00
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
2014-10-18 00:42:47 +02:00
|
|
|
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 640 -o -perm 600 -o -perm 444 \
|
|
|
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
|
|
|
|
2017-03-10 21:44:12 +01:00
|
|
|
# JAVA=yes only tested with openjdk and openjdk6. We source the profile.d
|
|
|
|
# script here in case someone's *just* installed jdk|openjdk, so they
|
|
|
|
# won't have to log out & back in to get this built. This mostly helps
|
|
|
|
# out sbopkg users.
|
|
|
|
JAVA="${JAVA:-no}"
|
|
|
|
if [ "$JAVA" = "yes" ]; then
|
|
|
|
EXTRAOPTS="--with-java "
|
|
|
|
|
|
|
|
# Find a JDK. Presumably a sane admin will only have one of these
|
|
|
|
# profile scripts executable, even if he's installed all of them.
|
|
|
|
# TODO: maybe let the user specify the JDK to use instead? I'm not
|
|
|
|
# sure it actually matters that much ("write once, run anywhere" should
|
|
|
|
# mean a .jar built with openjdk will run with Oracle's jdk, right? But
|
|
|
|
# there's JNI (native code) involved...)
|
|
|
|
for i in jdk openjdk8 openjdk openjdk6; do
|
|
|
|
if [ -x /etc/profile.d/$i.sh ]; then
|
|
|
|
source /etc/profile.d/$i.sh
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Whichever jdk we decided to use, use its JAVA_HOME. Unfortunately
|
|
|
|
# mozjpeg ignores the *standard* JAVA_HOME env var, so we persuade
|
|
|
|
# it thus:
|
|
|
|
sed -i "s,/usr/java,$JAVA_HOME,g" configure.ac
|
|
|
|
fi
|
|
|
|
|
2014-10-18 00:42:47 +02:00
|
|
|
autoreconf -fiv
|
|
|
|
|
2017-05-03 20:22:27 +02:00
|
|
|
# Maybe TODO: really, there should be a way to build multiple API versions,
|
|
|
|
# with file paths that don't clash: /opt/mozjpeg/jpeg$API/(bin|lib|include).
|
|
|
|
# However, I'd be inventing my own directory layout for this (upstream
|
|
|
|
# doesn't support it), which is kinda outside the scope of what a SlackBuild
|
|
|
|
# should do. If you *really* need this feature, email me and convince me to
|
|
|
|
# implement it (it's a lot of error-prone work, not going to do it unless
|
|
|
|
# someone actually needs it).
|
2017-03-10 21:44:12 +01:00
|
|
|
API="${API:-6b}"
|
|
|
|
case "$API" in
|
|
|
|
6b) ;; # do nothing, this is the default
|
|
|
|
7|8) EXTRAOPTS="$EXTRAOPTS --with-jpeg$API" ;;
|
|
|
|
*) echo "Invalid API version, supported versions are 6b 7 8" 1>&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# 20170310 bkw: This stuff needs documenting, or I'll forget why
|
|
|
|
# I did it this way.
|
|
|
|
|
|
|
|
# Leaving off all the --prefix and related options below, since the
|
2017-05-03 20:22:27 +02:00
|
|
|
# default prefix is already /opt/mozjpeg... though starting with 3.2,
|
|
|
|
# the man pages and docs are in $PREFIX/share/(man|doc), so use
|
|
|
|
# --mandir and --docdir. Also, to make 3.2 match the 3.1 package, need
|
|
|
|
# --datarootdir=$PREFIX to make the java classes go to $PREFIX/classes.
|
2017-03-10 21:44:12 +01:00
|
|
|
|
|
|
|
# Ryan's version of this script had --disable-static, but I'm leaving
|
|
|
|
# that off, because sometimes static libs are easier to deal with when
|
|
|
|
# you're linking with libraries outside the system /usr/lib(64) dir.
|
|
|
|
|
|
|
|
# The LDFLAGS gibberish below is to force the binaries in /opt/mozjpeg/bin
|
|
|
|
# to use the libraries in /opt/mozjpeg/lib(64), otherwise they use the
|
|
|
|
# system libjpeg in /usr/lib(64) which partly defeats the purpose of
|
|
|
|
# having optimized jpeg libs...
|
|
|
|
|
2017-05-03 20:22:27 +02:00
|
|
|
|
2017-03-10 21:44:12 +01:00
|
|
|
LDFLAGS="-Wl,-rpath,/opt/$PRGNAM/lib$LIBDIRSUFFIX" \
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
$EXTRAOPTS \
|
2017-05-03 20:22:27 +02:00
|
|
|
--datarootdir=/opt/$PRGNAM \
|
|
|
|
--mandir=/opt/$PRGNAM/man \
|
|
|
|
--docdir=/opt/$PRGNAM/doc \
|
2017-03-10 21:44:12 +01:00
|
|
|
--build=$ARCH-slackware-linux
|
2014-10-18 00:42:47 +02:00
|
|
|
|
2017-03-10 21:44:12 +01:00
|
|
|
# the java stuff chokes without -j1, everything else is OK.
|
|
|
|
if [ "$JAVA" = "yes" ]; then
|
|
|
|
make -j1 -C java
|
|
|
|
fi
|
2014-10-18 00:42:47 +02:00
|
|
|
|
2017-03-10 21:44:12 +01:00
|
|
|
make # V=1
|
|
|
|
make install-strip DESTDIR=$PKG
|
|
|
|
gzip $PKG/opt/$PRGNAM/man/man?/*.?
|
2014-10-18 00:42:47 +02:00
|
|
|
|
2017-03-10 21:44:12 +01:00
|
|
|
# docs are installed in /opt already (except the license)
|
|
|
|
mkdir -p $PKG/usr/doc
|
|
|
|
mv $PKG/opt/$PRGNAM/doc $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
ln -s ../../../usr/doc/$PRGNAM-$VERSION $PKG/opt/$PRGNAM/doc
|
2017-05-03 20:22:27 +02:00
|
|
|
cp -a LICENSE.* $PKG/usr/doc/$PRGNAM-$VERSION
|
2014-10-18 00:42:47 +02:00
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
2017-03-10 21:44:12 +01:00
|
|
|
[ "$JAVA" = "yes" ] && cp -a java/doc $PKG/usr/doc/$PRGNAM-$VERSION/javadoc
|
|
|
|
|
2014-10-18 00:42:47 +02:00
|
|
|
mkdir -p $PKG/install
|
2017-03-10 21:44:12 +01:00
|
|
|
sed -e "s,@API@,$API," -e "s,@JAVA@,$JAVA," \
|
|
|
|
$CWD/slack-desc > \
|
|
|
|
$PKG/install/slack-desc
|
2014-10-18 00:42:47 +02:00
|
|
|
|
|
|
|
cd $PKG
|
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|