wok-undigest annotate ephoto/receipt @ rev 1016

ephoto: needs a config.cache-env
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 25 17:36:47 2013 +0200 (2013-04-25)
parents 7fdbdb46e1b9
children 135ad0e1fc7d
rev   line source
pankso@247 1 # SliTaz package receipt.
pankso@247 2
pankso@247 3 PACKAGE="ephoto"
domcox@1015 4 VERSION="0.1.1.0"
pankso@247 5 CATEGORY="graphics"
domcox@1015 6 SHORT_DESC="Enlightenment images manager."
pankso@247 7 MAINTAINER="pankso@slitaz.org"
pankso@247 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@247 9 WEB_SITE="http://www.enlightenment.org/"
domcox@1015 10 WGET_URL="git://git.enlightenment.org/apps/$PACKAGE.git"
domcox@1015 11 TAGS="e enlightenment photo"
pankso@247 12
domcox@1015 13 DEPENDS="elementary"
domcox@1015 14 BUILD_DEPENDS="elementary-dev autoconf automake git libtool subversion"
pankso@247 15
pankso@247 16 # Rules to configure and make the package.
pankso@247 17 compile_rules()
pankso@247 18 {
pascal@1016 19 touch config.cache-env
domcox@1015 20 ./autogen.sh &&
pankso@247 21 ./configure $CONFIGURE_ARGS && make && make install
pankso@247 22 }
pankso@247 23
pankso@247 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@247 25 genpkg_rules()
pankso@247 26 {
domcox@1015 27 mkdir -p $fs/usr/bin
domcox@1015 28 cp -a $install/usr/bin $fs/usr
domcox@1015 29 mkdir -p $fs/usr/lib
domcox@1015 30 cp -a $install/usr/lib/*.so $fs/usr/lib
domcox@1015 31 mkdir -p $fs/usr/share
domcox@1015 32 cp -a $install/usr/share $fs/usr
pankso@247 33 }