wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="giflib"
4 VERSION="5.2.1"
5 CATEGORY="graphics"
6 SHORT_DESC="A library for processing GIFs."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://sourceforge.net/projects/giflib/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="glibc-base xorg-libSM xorg-libICE xorg-libX11 xorg-libXau \
15 xorg-libXdmcp"
16 BUILD_DEPENDS="util-linux-uuid-dev libtool"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 sed -i 's|/local||' Makefile
22 make && make DESTDIR=$DESTDIR install
23 case "$ARCH" in
24 i?86)
25 # libungif compatibility - instructions taken from Redhat specfile
26 MAJOR=`echo $VERSION | sed 's/\([0-9]\+\)\..*/\1/'`
27 gcc -shared -Wl,-soname,libungif.so.${MAJOR} \
28 -L. -lgif -o libungif.so.$VERSION
29 install -m755 libungif.so.${VERSION} "$DESTDIR/usr/lib/"
30 ln -sf libungif.so.${VERSION%%.*} "$DESTDIR/usr/lib/libungif.so" ;;
31 esac
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
38 cp -a $install/usr/bin $fs/usr
39 mkdir -p $fs/usr/lib
40 cp -a $install/usr/lib/*.so* $fs/usr/lib
41 }