# HG changeset patch # User Hans-G?nter Theisgen # Date 1695981362 -3600 # Node ID b5e0b1f0276d6da277e65187055a365021f99dfa # Parent 76c8a51f118d3efe73b9d5765671c274e7127393 created recipes for gtkam and gtkam-lang diff -r 76c8a51f118d -r b5e0b1f0276d gtkam-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gtkam-lang/receipt Fri Sep 29 10:56:02 2023 +0100 @@ -0,0 +1,16 @@ +# SliTaz package receipt. + +PACKAGE="gtkam-lang" +VERSION="1.0" +CATEGORY="localization" +SHORT_DESC="GTK digital camera access - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPLv2+" +WEB_SITE="http://www.gphoto.org/proj/gtkam/" + +WANTED="gtkam" + +genpkg_rules() +{ + cook_copy_folders locale +} diff -r 76c8a51f118d -r b5e0b1f0276d gtkam/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gtkam/description.txt Fri Sep 29 10:56:02 2023 +0100 @@ -0,0 +1,3 @@ +gtkam is the official GTK2 GUI for libgphoto2. +Its purpose it to provide a standard client for libgphoto2 aimed at GNOME users. +Consider it as a reference implementation for a graphical libgphoto2 client. diff -r 76c8a51f118d -r b5e0b1f0276d gtkam/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gtkam/receipt Fri Sep 29 10:56:02 2023 +0100 @@ -0,0 +1,41 @@ +# SliTaz package receipt. + +PACKAGE="gtkam" +VERSION="1.0" +CATEGORY="graphics" +TAGS="camera" +SHORT_DESC="GTK digital camera access." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPLv2+" +WEB_SITE="http://www.gphoto.org/proj/gtkam/" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$SF_MIRROR/gphoto/$TARBALL" + +SUGGESTED="gtkam-lang" +DEPENDS="atk gtk+ libexif-gtk libgphoto2 libxml2" +BUILD_DEPENDS="atk-dev gtk+-dev libexif-gtk-dev libgphoto2-dev libtool libxml2-dev" + +HOST_ARCH="i486 arm" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --enable-static=no \ + --without-bonobo \ + --without-gnome \ + --without-gimp \ + $CONFIGURE_ARGS && + make && + make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders bin + cook_copy_folders images +}