wok-6.x diff libexif-gtk/receipt @ rev 21181

created recipes for libexif-gtk and libexif-gtk-dev
author Hans-G?nter Theisgen
date Tue Apr 02 16:27:15 2019 +0100 (2019-04-02)
parents
children 97cea0db1214
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libexif-gtk/receipt	Tue Apr 02 16:27:15 2019 +0100
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libexif-gtk"
     1.7 +VERSION="0.4.0"
     1.8 +CATEGORY="graphics"
     1.9 +SHORT_DESC="A library of widgets to help display EXIF tags in GTK programs."
    1.10 +MAINTAINER="developer@slitaz.org"
    1.11 +LICENSE="LGPL2.1"
    1.12 +WEB_SITE="https://libexif.github.io/"
    1.13 +
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.15 +WGET_URL="$SF_MIRROR/libexif/$TARBALL"
    1.16 +
    1.17 +DEPENDS="libexif gtk+"
    1.18 +BUILD_DEPENDS="libexif-dev gtk+-dev"
    1.19 +HOST_ARCH="i486 arm"
    1.20 +
    1.21 +# Rules to configure and make the package.
    1.22 +compile_rules()
    1.23 +{
    1.24 +	# By default build with gtk2
    1.25 +	./configure &&
    1.26 +	make -j 1 &&
    1.27 +	make install
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr/lib
    1.34 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.35 +}