wok-next annotate exiv2/receipt @ rev 20494

make-slitaz-icons: in multiple choice for 16px request: if 16px and scalable icons both are available, try to choose 16px one, but not the first caught.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Mar 13 23:17:56 2018 +0200 (2018-03-13)
parents e6615350078d
children b19ddba309f9
rev   line source
al@19741 1 # SliTaz package receipt v2.
jozee@2725 2
jozee@2725 3 PACKAGE="exiv2"
al@19741 4 VERSION="0.26"
jozee@2725 5 CATEGORY="graphics"
al@19741 6 SHORT_DESC="EXIF and IPTC metadata manipulation library and tools"
jozee@2725 7 MAINTAINER="jozee@slitaz.org"
pascal@15588 8 LICENSE="GPL2"
pankso@4228 9 WEB_SITE="http://www.exiv2.org/"
jozee@2725 10
al@19741 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@19741 12 WGET_URL="http://www.exiv2.org/builds/exiv2-$VERSION-trunk.tar.gz"
al@19741 13 TARBALL_MD5="f936d2ca5cbe1e18c71ca2baa5e84fb4"
al@19741 14
al@19741 15 BUILD_DEPENDS="gettext zlib-dev expat-dev curl-dev libssh-dev"
al@19741 16 SPLIT="exiv2-dev"
pascal@15588 17
jozee@2725 18 # Rules to configure and make the package.
jozee@2725 19 compile_rules()
jozee@2725 20 {
pankso@4228 21 ./configure \
al@19741 22 --enable-video \
al@19741 23 --enable-webready \
pankso@4228 24 $CONFIGURE_ARGS &&
al@19741 25 make && make install
jozee@2725 26 }
jozee@2725 27
jozee@2725 28 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2725 29 genpkg_rules()
jozee@2725 30 {
al@19741 31 case $PACKAGE in
al@19741 32 exiv2)
al@19741 33 copy @std
al@19741 34 DEPENDS="expat libcurl libssh zlib"
al@19741 35 ;;
al@19741 36 exiv2-dev)
al@19741 37 copy @dev
al@20453 38 DEPENDS="curl-dev expat-dev libssh-dev openssl-dev \
al@19741 39 zlib-dev"
al@19741 40 ;;
al@19741 41 esac
jozee@2725 42 }