#!/bin/sh # Written by Thomas Bourdon # Copyright: See COPYING file at . # Build infos PRGNAM=php8.2-imagick VERSION=${VERSION:-3.7.0} BUILD=${BUILD:-3} TAG=${TAG:-_SBo} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i586 ;; 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} # Determine some specific variables to build software. if [ "$ARCH" = "i586" ]; then SLKCFLAGS="-O2 -march=i586 -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 # Exit on most errors set -e # Extract the software rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf imagick-$VERSION tar xvf $CWD/imagick-$VERSION.t?z* cd imagick-$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 {} + # Build the software PHP_CONFIG=/opt/php8.2/usr/bin/php-config /opt/php8.2/usr/bin/phpize CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/opt/php8.2/usr \ --libdir=/opt/php8.2/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/opt/php8.2/etc \ --localstatedir=/opt/php8.2/var \ --mandir=/opt/php8.2/usr/man \ --docdir=/opt/php8.2/usr/doc/$PRGNAM-$VERSION \ --enable-static=no \ --with-php-config=/opt/php8.2/usr/bin/php-config \ --build=$ARCH-slackware-linux make ${NUMJOBS:-" -j5 "} || make EXTENSION_DIR="$PKG/$($PHP_CONFIG --extension-dir)" INCLUDE_DIR="$PKG/$($PHP_CONFIG --include-dir)" mkdir -p $EXTENSION_DIR $INCLUDE_DIR $PKG/opt/php8.2/etc/php.d make EXTENSION_DIR=$EXTENSION_DIR phpincludedir=$INCLUDE_DIR DESTDIR=$PKG install mkdir -p $PKG/opt/php8.2/usr/lib$LIBDIRSUFFIX/php/.pkgxml install -m 644 $TMP/package.xml $PKG/opt/php8.2/usr/lib$LIBDIRSUFFIX/php/.pkgxml/imagick.xml # Strip binaries and libraries and archives find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true find $PKG -type f | xargs file | grep "current ar archive" | cut -d : -f 1 | xargs strip -g 2> /dev/null || true # Copy program documentation into the package mkdir -p $PKG/opt/php8.2/usr/doc/$PRGNAM-$VERSION/examples cp -a \ ChangeLog CREDITS LICENSE \ $PKG/opt/php8.2/usr/doc/$PRGNAM-$VERSION cp -a examples/*.php \ $PKG/opt/php8.2/usr/doc/$PRGNAM-$VERSION/examples/ cat $CWD/$PRGNAM.SlackBuild > $PKG/opt/php8.2/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild # Install imagick.ini mkdir -p $PKG/opt/php8.2/usr/doc/$PRGNAM-$VERSION/etc/php.d cp -a $CWD/imagick.ini $PKG/opt/php8.2/usr/doc/$PRGNAM-$VERSION/etc/php.d/imagick.ini rm -rf $PKG/opt/php8.2/etc # Copy the slack-desc and a custom doinst.sh into ./install mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh # Make the package cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}