wok view gphoto2/receipt @ rev 24513

updated elfkickers (3.1 -> 3.2)
author Hans-G?nter Theisgen
date Mon Feb 21 10:48:33 2022 +0100 (2022-02-21)
parents c5db347bc553
children cdbf817b8967
line source
1 # SliTaz package receipt.
3 PACKAGE="gphoto2"
4 VERSION="2.5.23"
5 CATEGORY="graphics"
6 TAGS="camera photo"
7 SHORT_DESC="Digital camera download and access program."
8 MAINTAINER="jozee@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://www.gphoto.org"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="$SF_MIRROR/gphoto/$TARBALL"
15 DEPENDS="jpeg libexif libgphoto2 libltdl ncurses popt readline"
16 BUILD_DEPENDS="jpeg-dev libgphoto2-dev libtool popt-dev readline-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - https://sourceforge.net/projects/gphoto/files/gphoto/ 2>/dev/null | \
22 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
23 sed '/scope="row/!d;s|.*/gphoto/||;s|/.*||;q'
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 ./configure $CONFIGURE_ARGS &&
30 make &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/share
38 cp -a $install/usr/bin $fs/usr
39 }