wok annotate jasper/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
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 }