wok-next view jasper/receipt @ rev 19742

Up alsaplayer and alsa-lib to v2.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jun 05 19:31:24 2017 +0000 (2017-06-05)
parents 6e41896cc317
children 7042ae74166a
line source
1 # SliTaz package receipt.
3 PACKAGE="jasper"
4 VERSION="1.900.1"
5 CATEGORY="graphics"
6 SHORT_DESC="Implementation of JPEG-2000 codec"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://www.ece.uvic.ca/~mdadams/jasper/"
10 TAGS="jpeg jpg photo"
11 HOST_ARCH="i486 arm"
13 TARBALL="$PACKAGE-$VERSION.zip"
14 WGET_URL="${WEB_SITE}software/$TARBALL"
16 DEPENDS=""
17 BUILD_DEPENDS="gfortran xorg-libX11-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 while read i; do patch -p1 -i $stuff/patches/$i; done < $stuff/patches/series
24 ./configure \
25 --enable-shared \
26 --disable-static \
27 --mandir=/usr/share/man \
28 $CONFIGURE_ARGS &&
29 make && make install &&
31 install -v -m755 -d $install/usr/share/doc/jasper-$VERSION &&
32 install -v -m644 doc/*.pdf $install/usr/share/doc/jasper-$VERSION
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cook_copy_folders bin
39 cook_copy_files *.so*
40 }