wok annotate freeimage/receipt @ rev 8808

Add: libdrm-mach64 20110109
author Antoine Bodin <gokhlayeh@slitaz.org>
date Wed Feb 23 01:16:27 2011 +0100 (2011-02-23)
parents c194790b4277
children d1768332cee0
rev   line source
jozee@2726 1 # SliTaz package receipt.
jozee@2726 2
jozee@2726 3 PACKAGE="freeimage"
slaxemulator@6833 4 VERSION="3141"
jozee@2726 5 CATEGORY="graphics"
jozee@2726 6 SHORT_DESC="library to support popular graphics image formats like PNG, BMP, JPEG, TIFF and others"
jozee@2726 7 MAINTAINER="jozee@slitaz.org"
pascal@5001 8 DEPENDS="gcc-lib-base"
jozee@2726 9 BUILD_DEPENDS="gcc-lib-base"
jozee@2726 10 SOURCE="FreeImage"
jozee@2726 11 TARBALL="$SOURCE$VERSION.zip"
jozee@2726 12 WEB_SITE="http://freeimage.sourceforge.net/"
jozee@2726 13 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL"
jozee@2726 14
jozee@2726 15 # Rules to configure and make the package.
jozee@2726 16 compile_rules()
jozee@2726 17 {
slaxemulator@8438 18 cd $src
slaxemulator@6833 19 patch -Np1 -i ../stuff/gcc4.5_ln.patch
jozee@2726 20 pkgdir=$PWD/_pkg
jozee@2726 21 incl=$pkgdir/usr/include
jozee@2726 22 dest=$pkgdir/usr/lib
jozee@2726 23 install -d $dest
jozee@2726 24 install -d $incl
jozee@2726 25 sed -e "s|INCDIR = /usr/include|INCDIR = $incl|g" -i Makefile.gnu
jozee@2726 26 sed -e "s|INSTALLDIR = /usr/lib|INSTALLDIR = $dest|g" -i Makefile.gnu
jozee@2726 27 sed -e "s|ldconfig||g" -i Makefile.gnu
pascal@5001 28 make &&
jozee@2726 29 make DESTDIR=$pkgdir install
jozee@2726 30 }
jozee@2726 31
jozee@2726 32 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2726 33 genpkg_rules()
jozee@2726 34 {
jozee@2726 35 mkdir -p $fs/usr/lib
slaxemulator@8438 36 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
jozee@2726 37
jozee@2726 38 }