wok annotate libpano13/receipt @ rev 23443
updated postfixadmin again (3.2 -> 3.2.3)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Apr 02 15:23:47 2020 +0100 (2020-04-02) |
parents | 086841d75237 |
children | 65d7d867e0c1 |
rev | line source |
---|---|
pascal@14594 | 1 # SliTaz package receipt. |
pascal@14594 | 2 |
pascal@14594 | 3 PACKAGE="libpano13" |
Hans-G?nter@21271 | 4 VERSION="2.9.19" |
pascal@14594 | 5 CATEGORY="development" |
pascal@14594 | 6 SHORT_DESC="Panorama tools library." |
pascal@14594 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14716 | 8 LICENSE="GPL2" |
Hans-G?nter@21271 | 9 WEB_SITE="http://panotools.sourceforge.net/" |
Hans-G?nter@21271 | 10 |
pascal@14594 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@14594 | 12 WGET_URL="$SF_MIRROR/panotools/$TARBALL" |
pascal@14594 | 13 |
Hans-G?nter@21271 | 14 DEPENDS="jpeg libpng tiff" |
Hans-G?nter@21271 | 15 BUILD_DEPENDS="bash jpeg-dev libpng-dev tiff-dev" |
pascal@14594 | 16 |
pascal@14594 | 17 # Rules to configure and make the package. |
pascal@14594 | 18 compile_rules() |
pascal@14594 | 19 { |
Hans-G?nter@21271 | 20 ./configure \ |
Hans-G?nter@21271 | 21 --prefix=/usr \ |
Hans-G?nter@21271 | 22 --build=$HOST_SYSTEM \ |
pascal@14594 | 23 --host=$HOST_SYSTEM && |
Hans-G?nter@21271 | 24 make -j 1 && |
pascal@14594 | 25 make DESTDIR=$DESTDIR install |
pascal@14594 | 26 } |
pascal@14594 | 27 |
pascal@14594 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@14594 | 29 genpkg_rules() |
pascal@14594 | 30 { |
pascal@14594 | 31 mkdir -p $fs/usr/lib |
Hans-G?nter@21271 | 32 |
Hans-G?nter@21271 | 33 cp -a $install/usr/lib/*.so* $fs/usr/lib |
Hans-G?nter@21271 | 34 cp -a $install/usr/lib/pkgconfig $fs/usr/lib |
Hans-G?nter@21271 | 35 cp -a $install/usr/bin $fs/usr |
pascal@14594 | 36 } |