wok-stable rev 2920

Add exhibit (E17 image manager)
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 06 23:21:52 2009 +0200 (2009-05-06)
parents fbdef63a87cd
children c304ad727a59
files exhibit/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/exhibit/receipt	Wed May 06 23:21:52 2009 +0200
     1.3 @@ -0,0 +1,34 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="exhibit"
     1.7 +VERSION="40505"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="Exhibit is an image viewer that uses Etk (E17) as its toolkit."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="xorg-libX11 ecore evas etk"
    1.12 +BUILD_DEPENDS="xorg-libX11-dev ecore-dev evas-dev etk-dev subversion"
    1.13 +WEB_SITE="http://www.enlightenment.org/"
    1.14 +
    1.15 +# Rules to configure and make the package.
    1.16 +compile_rules()
    1.17 +{
    1.18 +	[ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION
    1.19 +	svn co http://svn.enlightenment.org/svn/e/trunk/$PACKAGE \
    1.20 +		-r $VERSION $PACKAGE-$VERSION
    1.21 +	cd $src
    1.22 +	./autogen.sh \
    1.23 +		--prefix=/usr \
    1.24 +		--mandir=/usr/share/man \
    1.25 +		$CONFIGURE_ARGS &&
    1.26 +	make &&
    1.27 +	make DESTDIR=$PWD/_pkg install
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr/share
    1.34 +	cp -a $_pkg/usr/bin $fs/usr
    1.35 +	cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
    1.36 +}
    1.37 +