wok annotate libexif/receipt @ rev 23931
busybox: enable tcpsvd (for ftpd or lpd)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Sep 04 17:38:59 2020 +0000 (2020-09-04) |
parents | e24f9f369562 |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
pankso@1277 | 1 # SliTaz package receipt. |
pankso@1277 | 2 |
pankso@1277 | 3 PACKAGE="libexif" |
pascal@23834 | 4 VERSION="0.6.22" |
pankso@1277 | 5 CATEGORY="system-tools" |
pankso@1277 | 6 SHORT_DESC="Reads and writes EXIF metainformation from and to image files." |
pankso@1277 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15472 | 8 LICENSE="LGPL2.1" |
Hans-G?nter@21176 | 9 WEB_SITE="http://libexif.sourceforge.net/" |
Hans-G?nter@21176 | 10 |
pascal@23834 | 11 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pascal@23834 | 12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/$PACKAGE-${VERSION//./_}-release/$TARBALL" |
Hans-G?nter@21176 | 13 |
pankso@16095 | 14 HOST_ARCH="i486 arm" |
pankso@1277 | 15 |
pankso@1277 | 16 # Rules to configure and make the package. |
pankso@1277 | 17 compile_rules() |
pankso@1277 | 18 { |
pascal@23834 | 19 ln -s /bin/sh /usr/bin/sh |
Hans-G?nter@21176 | 20 ./configure \ |
Hans-G?nter@21176 | 21 --prefix=/usr \ |
Hans-G?nter@21176 | 22 $CONFIGURE_ARGS && |
Hans-G?nter@21176 | 23 make -j 1 && |
pascal@15472 | 24 make DESTDIR=$DESTDIR install |
pascal@23834 | 25 rm /usr/bin/sh |
pankso@1277 | 26 } |
pankso@1277 | 27 |
pankso@1277 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@1277 | 29 genpkg_rules() |
pankso@1277 | 30 { |
pankso@1277 | 31 mkdir -p $fs/usr/lib |
pascal@15472 | 32 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@1277 | 33 } |