wok view libexif-gtk/receipt @ rev 23741

updated workerfm again (2.19.6 -> 4.1.0)
author Hans-G?nter Theisgen
date Fri May 01 11:25:13 2020 +0100 (2020-05-01)
parents 0b28c8ed8dc8
children 65d7d867e0c1
line source
1 # SliTaz package receipt.
3 PACKAGE="libexif-gtk"
4 VERSION="0.4.0"
5 CATEGORY="graphics"
6 SHORT_DESC="A library of widgets to help display EXIF tags in GTK programs."
7 MAINTAINER="developer@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://libexif.github.io/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/libexif/$TARBALL"
14 DEPENDS="gtk+ libexif"
15 BUILD_DEPENDS="file gtk+-dev libexif-dev"
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # By default build with gtk2
22 ./configure &&
23 make -j 1 &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }