wok annotate giflib/receipt @ rev 22817

moserial: fix moserial.desktop
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 04 18:51:57 2020 +0100 (2020-02-04)
parents 86790a278e70
children a3b001408630
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
rcx@3183 18 # Rules to configure and make the package.
rcx@3183 19 compile_rules()
rcx@3183 20 {
pascal@22358 21 sed -i 's|/local||' Makefile
slaxemulator@11721 22 make && make DESTDIR=$DESTDIR install
pankso@16067 23 case "$ARCH" in
pankso@16067 24 i?86)
pankso@16067 25 # libungif compatibility - instructions taken from Redhat specfile
pankso@16067 26 MAJOR=`echo $VERSION | sed 's/\([0-9]\+\)\..*/\1/'`
pankso@16067 27 gcc -shared -Wl,-soname,libungif.so.${MAJOR} \
pascal@22358 28 -L. -lgif -o libungif.so.$VERSION
pankso@16067 29 install -m755 libungif.so.${VERSION} "$DESTDIR/usr/lib/"
pascal@22358 30 ln -sf libungif.so.${VERSION%%.*} "$DESTDIR/usr/lib/libungif.so" ;;
pankso@16067 31 esac
rcx@3183 32 }
rcx@3183 33
rcx@3183 34 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3183 35 genpkg_rules()
rcx@3183 36 {
rcx@3183 37 mkdir -p $fs/usr
pascal@15600 38 cp -a $install/usr/bin $fs/usr
rcx@3183 39 mkdir -p $fs/usr/lib
pascal@15600 40 cp -a $install/usr/lib/*.so* $fs/usr/lib
rcx@3183 41 }