wok-next annotate imlib/receipt @ rev 15133
python-werkzeug: add TARBALL
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Aug 15 10:06:57 2013 +0000 (2013-08-15) |
parents | 73641efed1cc |
children | d3eb5f4b53ea |
rev | line source |
---|---|
rcx@3192 | 1 # SliTaz package receipt. |
rcx@3192 | 2 |
rcx@3192 | 3 PACKAGE="imlib" |
rcx@3192 | 4 VERSION="1.9.15" |
rcx@3192 | 5 CATEGORY="graphics" |
rcx@3192 | 6 SHORT_DESC="An advanced replacement imaging library for libraries like libXpm." |
rcx@3192 | 7 MAINTAINER="rcx@zoominternet.net" |
pascal@15001 | 8 LICENSE="GPL2" |
rcx@3192 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
rcx@3192 | 10 WEB_SITE="http://freshmeat.net/projects/imlib/" |
rcx@3192 | 11 WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/1.9/$TARBALL" |
rcx@3192 | 12 |
pascal@15001 | 13 DEPENDS="glibc-base xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext giflib jpeg libpng tiff zlib util-linux-uuid" |
pascal@15001 | 14 BUILD_DEPENDS="slitaz-toolchain xorg-dev xorg-xextproto giflib giflib-dev jpeg jpeg-dev libpng libpng-dev tiff tiff-dev zlib zlib-dev util-linux-uuid-dev" |
pascal@15001 | 15 |
rcx@3192 | 16 # Rules to configure and make the package. |
rcx@3192 | 17 compile_rules() |
rcx@3192 | 18 { |
rcx@3192 | 19 cd $src |
rcx@3192 | 20 ./configure \ |
rcx@3192 | 21 --prefix=/usr \ |
rcx@3192 | 22 --sysconfdir=/etc \ |
rcx@3192 | 23 --infodir=/usr/share/info \ |
rcx@3192 | 24 --mandir=/usr/share/man \ |
rcx@3192 | 25 $CONFIGURE_ARGS && |
pascal@15001 | 26 make && make DESTDIR=$DESTDIR install |
rcx@3192 | 27 } |
rcx@3192 | 28 |
rcx@3192 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3192 | 30 genpkg_rules() |
rcx@3192 | 31 { |
rcx@3192 | 32 mkdir -p $fs/usr |
pascal@15001 | 33 cp -a $install/usr/bin $fs/usr |
rcx@3192 | 34 mkdir -p $fs/usr/lib |
pascal@15001 | 35 cp -a $install/usr/lib/*.so* $fs/usr/lib |
rcx@3192 | 36 mkdir -p $fs/etc |
pascal@15001 | 37 cp -a $install/etc $fs |
rcx@3192 | 38 } |