wok-undigest view ephoto/receipt @ rev 1230

python3: sqlite3-dev replaced by sqlite-dev
author Hans-G?nter Theisgen
date Wed Sep 09 14:09:02 2020 +0100 (2020-09-09)
parents 95b0858e3c85
children
line source
1 # SliTaz package receipt.
3 PACKAGE="ephoto"
4 VERSION="0.1.1.0"
5 CATEGORY="graphics"
6 SHORT_DESC="Enlightenment images manager."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.enlightenment.org/"
11 WGET_URL="git://git.enlightenment.org/apps/$PACKAGE.git"
12 TAGS="e enlightenment photo"
14 DEPENDS="elementary"
15 BUILD_DEPENDS="elementary-dev autoconf automake git libtool subversion"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 touch config.cache-env
21 ./autogen.sh &&
22 ./configure $CONFIGURE_ARGS && make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp -a $install/usr/bin $fs/usr
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so $fs/usr/lib
32 mkdir -p $fs/usr/share
33 cp -a $install/usr/share $fs/usr
34 }