wok annotate giflib/receipt @ rev 25176

updated python-formalchemy (1.5.5 -> 1.5.6)
author Hans-G?nter Theisgen
date Fri Jul 01 17:52:21 2022 +0100 (23 months ago)
parents a3b001408630
children ad0bc3efbf37
rev   line source
rcx@3183 1 # SliTaz package receipt.
rcx@3183 2
rcx@3183 3 PACKAGE="giflib"
pascal@22358 4 VERSION="5.2.1"
rcx@3184 5 CATEGORY="graphics"
rcx@3183 6 SHORT_DESC="A library for processing GIFs."
rcx@3183 7 MAINTAINER="rcx@zoominternet.net"
pascal@15600 8 LICENSE="MIT"
pascal@22358 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20421 10 WEB_SITE="https://sourceforge.net/projects/giflib/"
pascal@15600 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@16067 12 HOST_ARCH="i486 arm"
pascal@15600 13
jozee@5110 14 DEPENDS="glibc-base xorg-libSM xorg-libICE xorg-libX11 xorg-libXau \
pascal@5001 15 xorg-libXdmcp"
pascal@12662 16 BUILD_DEPENDS="util-linux-uuid-dev libtool"
rcx@3183 17
pascal@24403 18 # What is the latest version available today?
pascal@24403 19 current_version()
pascal@24403 20 {
pascal@24403 21 wget -O - https://sourceforge.net/projects/giflib/files/ 2>/dev/null | \
pascal@24403 22 sed '/scope="row/!d;/tar.gz/!d;s|.*/giflib-||;s|.tar.*||;q'
pascal@24403 23 }
pascal@24403 24
rcx@3183 25 # Rules to configure and make the package.
rcx@3183 26 compile_rules()
rcx@3183 27 {
pascal@23056 28 patch -p0 < $stuff/restore-GifQuantizeBuffer.u
pascal@22358 29 sed -i 's|/local||' Makefile
slaxemulator@11721 30 make && make DESTDIR=$DESTDIR install
pankso@16067 31 case "$ARCH" in
pankso@16067 32 i?86)
pankso@16067 33 # libungif compatibility - instructions taken from Redhat specfile
pankso@16067 34 MAJOR=`echo $VERSION | sed 's/\([0-9]\+\)\..*/\1/'`
pankso@16067 35 gcc -shared -Wl,-soname,libungif.so.${MAJOR} \
pascal@22358 36 -L. -lgif -o libungif.so.$VERSION
pankso@16067 37 install -m755 libungif.so.${VERSION} "$DESTDIR/usr/lib/"
pascal@22358 38 ln -sf libungif.so.${VERSION%%.*} "$DESTDIR/usr/lib/libungif.so" ;;
pankso@16067 39 esac
rcx@3183 40 }
rcx@3183 41
rcx@3183 42 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3183 43 genpkg_rules()
rcx@3183 44 {
rcx@3183 45 mkdir -p $fs/usr
pascal@15600 46 cp -a $install/usr/bin $fs/usr
rcx@3183 47 mkdir -p $fs/usr/lib
pascal@15600 48 cp -a $install/usr/lib/*.so* $fs/usr/lib
rcx@3183 49 }