mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
91 lines
2.6 KiB
Bash
91 lines
2.6 KiB
Bash
#!/bin/sh
|
|
|
|
# Slackware build script for Qt 4
|
|
# Written by Aleksandar Samardzic <asamardzic@gmail.com>
|
|
# Modified by Robby Workman <rworkman@slackbuilds.org>
|
|
|
|
PRGNAM=qt4
|
|
VERSION=${VERSION:-4.4.3}
|
|
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"
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
fi
|
|
|
|
set -e
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP
|
|
rm -rf qt-x11-opensource-src-$VERSION
|
|
tar xvf $CWD/qt-x11-opensource-src-$VERSION.tar.gz
|
|
cd qt-x11-opensource-src-$VERSION
|
|
chown -R root:root .
|
|
find . \
|
|
\( -perm 777 -o -perm 775 -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 {} \;
|
|
|
|
export CFLAGS="$SLKCFLAGS"
|
|
export CXXFLAGS="$SLKCFLAGS"
|
|
export OPENSOURCE_CXXFLAGS="$SLKCFLAGS"
|
|
echo "yes" | ./configure \
|
|
-prefix /usr/lib/qt-$VERSION \
|
|
-no-separate-debug-info \
|
|
-nomake examples \
|
|
-nomake demos
|
|
|
|
make
|
|
make install INSTALL_ROOT=$PKG
|
|
|
|
( cd $PKG/usr/lib ; ln -sf qt-$VERSION qt4 )
|
|
|
|
( 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
|
|
)
|
|
|
|
mkdir -p $PKG/usr/bin
|
|
( cd $PKG/usr/bin
|
|
for file in assistant assistant_adp designer linguist lrelease lupdate moc pixeltool qcollectiongenerator qdbus qdbuscpp2xml qdbusviewer qdbusxml2cpp qhelpconverter qhelpgenerator qmake qt3to4 qtconfig rcc uic uic3 xmlpatterns;
|
|
do
|
|
ln -sf /usr/lib/qt-$VERSION/bin/$file ${file}-qt4 ;
|
|
done
|
|
)
|
|
|
|
mkdir -p $PKG/usr/lib/pkgconfig
|
|
( cd $PKG/usr/lib/pkgconfig
|
|
for file in Qt3Support.pc QtAssistantClient.pc QtCore.pc \
|
|
QtDBus.pc QtGui.pc QtNetwork.pc QtOpenGL.pc QtScript.pc \
|
|
QtSql.pc QtSvg.pc QtTest.pc QtUiTools.pc QtXml.pc ;
|
|
do
|
|
ln -sf /usr/lib/qt-$VERSION/lib/pkgconfig/$file . ;
|
|
done
|
|
)
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cp -a GPL_EXCEPTION.TXT GPL_EXCEPTION_ADDENDUM.TXT INSTALL LICENSE.GPL* \
|
|
OPENSOURCE-NOTICE.TXT README changes-$VERSION \
|
|
$PKG/usr/doc/$PRGNAM-$VERSION
|
|
( cd $PKG/usr/doc/$PRGNAM-$VERSION ; ln -sf /usr/lib/qt-$VERSION/doc/html . )
|
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
mkdir -p $PKG/install
|
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
cd $PKG
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|