wok view jasper/receipt @ rev 19934

fix symlinks (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 28 10:36:22 2017 +0200 (2017-04-28)
parents fd22b033a84a
children a0e682d8c53d
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 TARBALL="$PACKAGE-$VERSION.zip"
10 WEB_SITE="http://www.ece.uvic.ca/~mdadams/$PACKAGE/"
11 WGET_URL="$WEB_SITE/software/$TARBALL"
12 TAGS="jpeg jpg photo"
13 HOST_ARCH="i486 arm"
15 DEPENDS="xorg-libXi xorg-libXmu jpeg freeglut libglu-mesa util-linux-uuid"
16 BUILD_DEPENDS="jpeg-dev xorg-libXi-dev xorg-libXmu-dev autoconf"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 chmod +x configure
23 ./configure --prefix=/usr --mandir=/usr/share/man --enable-shared $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*so* $fs/usr/lib
36 }