mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-28 10:02:43 +01:00
85 lines
2 KiB
Text
85 lines
2 KiB
Text
|
#!/bin/sh
|
||
|
|
||
|
# Slackware build script for libvmime:
|
||
|
# a library for working with MIME messages
|
||
|
|
||
|
# Written by Niels Horn <niels.horn@gmail.com>
|
||
|
# revision date 2010/05/28
|
||
|
|
||
|
PRGNAM=libvmime
|
||
|
VERSION=${VERSION:-0.9.0}
|
||
|
BUILD=${BUILD:-2}
|
||
|
TAG=${TAG:-_SBo}
|
||
|
|
||
|
# Automatically determine the architecture we're building on:
|
||
|
if [ -z "$ARCH" ]; then
|
||
|
case "$( uname -m )" in
|
||
|
i?86) ARCH=i486 ;;
|
||
|
arm*) ARCH=arm ;;
|
||
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
||
|
*) ARCH=$( uname -m ) ;;
|
||
|
esac
|
||
|
fi
|
||
|
|
||
|
CWD=$(pwd)
|
||
|
TMP=${TMP:-/tmp/SBo}
|
||
|
PKG=$TMP/package-$PRGNAM
|
||
|
OUTPUT=${OUTPUT:-/tmp}
|
||
|
|
||
|
if [ "$ARCH" = "i486" ]; then
|
||
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||
|
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 $TMP/$PRGNAM-$VERSION $PKG
|
||
|
mkdir -p $TMP $PKG $OUTPUT
|
||
|
cd $TMP
|
||
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||
|
cd $PRGNAM-$VERSION
|
||
|
chown -R root:root .
|
||
|
chmod -R u+w,go+r-w,a-s .
|
||
|
|
||
|
# Patch "configure" to accept gnutls-2.8
|
||
|
# Based on: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529834
|
||
|
patch -p1 < $CWD/gnutls-28.patch
|
||
|
|
||
|
# Force "configure" to respect our CFLAGS / CXXFLAGS
|
||
|
patch -p1 < $CWD/flags.patch
|
||
|
|
||
|
# Patch to avoid "::rename has not been declared" error w/ new gcc
|
||
|
patch -p1 < $CWD/gcc44.patch
|
||
|
|
||
|
CFLAGS=$SLKCFLAGS \
|
||
|
CXXFLAGS=$SLKCFLAGS \
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||
|
--localstatedir=/var \
|
||
|
--mandir=/usr/man \
|
||
|
--build=$ARCH-slackware-linux
|
||
|
|
||
|
make docdir=/usr/doc/$PRGNAM-$VERSION
|
||
|
make docdir=/usr/doc/$PRGNAM-$VERSION install DESTDIR=$PKG
|
||
|
|
||
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||
|
|
||
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||
|
|
||
|
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.${PKGTYPE:-tgz}
|