wok annotate jasper/receipt @ rev 17338
Up slitaz-tools-boxes (5.8.12) slitaz-configs-base (5.5.6)
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Wed Nov 05 19:46:39 2014 +0100 (2014-11-05) |
parents | 23c3aed67cd9 |
children | 6e41896cc317 |
rev | line source |
---|---|
jozee@3038 | 1 # SliTaz package receipt. |
jozee@3038 | 2 |
jozee@3038 | 3 PACKAGE="jasper" |
jozee@3038 | 4 VERSION="1.900.1" |
jozee@3038 | 5 CATEGORY="graphics" |
jozee@3038 | 6 SHORT_DESC="implementation of JPEG-2000 codec" |
jozee@3038 | 7 MAINTAINER="jozee@slitaz.org" |
pascal@15601 | 8 LICENSE="MIT" |
jozee@3038 | 9 TARBALL="$PACKAGE-$VERSION.zip" |
jozee@3038 | 10 WEB_SITE="http://www.ece.uvic.ca/~mdadams/$PACKAGE/" |
jozee@3038 | 11 WGET_URL="$WEB_SITE/software/$TARBALL" |
jozee@3038 | 12 TAGS="jpeg jpg photo" |
jozee@3038 | 13 |
pascal@15601 | 14 DEPENDS="xorg-libXi xorg-libXmu jpeg freeglut libglu-mesa util-linux-uuid" |
pascal@15616 | 15 BUILD_DEPENDS="jpeg-dev xorg-libXi-dev xorg-libXmu-dev autoconf" |
jozee@3038 | 16 |
jozee@3038 | 17 # Rules to configure and make the package. |
jozee@3038 | 18 compile_rules() |
jozee@3038 | 19 { |
jozee@3038 | 20 cd $src |
jozee@3038 | 21 chmod +x configure |
gokhlayeh@11573 | 22 ./configure --prefix=/usr --mandir=/usr/share/man --enable-shared $CONFIGURE_ARGS && |
jozee@3038 | 23 make && |
pascal@15601 | 24 make DESTDIR=$DESTDIR install |
jozee@3038 | 25 |
jozee@3038 | 26 } |
jozee@3038 | 27 |
jozee@3038 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@3038 | 29 genpkg_rules() |
jozee@3038 | 30 { |
jozee@3038 | 31 mkdir -p $fs/usr/lib |
pascal@15601 | 32 cp -a $install/usr/bin $fs/usr |
pascal@15601 | 33 cp -a $install/usr/lib/*so* $fs/usr/lib |
jozee@3038 | 34 |
jozee@3038 | 35 } |