wok view gtkam/receipt @ rev 25623

created recipes for gtkam and gtkam-lang
author Hans-G?nter Theisgen
date Fri Sep 29 10:56:02 2023 +0100 (7 months ago)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gtkam"
4 VERSION="1.0"
5 CATEGORY="graphics"
6 TAGS="camera"
7 SHORT_DESC="GTK digital camera access."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="GPLv2+"
10 WEB_SITE="http://www.gphoto.org/proj/gtkam/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/gphoto/$TARBALL"
15 SUGGESTED="gtkam-lang"
16 DEPENDS="atk gtk+ libexif-gtk libgphoto2 libxml2"
17 BUILD_DEPENDS="atk-dev gtk+-dev libexif-gtk-dev libgphoto2-dev libtool libxml2-dev"
19 HOST_ARCH="i486 arm"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure \
25 --prefix=/usr \
26 --sysconfdir=/etc \
27 --enable-static=no \
28 --without-bonobo \
29 --without-gnome \
30 --without-gimp \
31 $CONFIGURE_ARGS &&
32 make &&
33 make install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 cook_copy_folders bin
40 cook_copy_folders images
41 }