wok view eet/receipt @ rev 3839

tazwok: mv desktop file to tazwok src
author Christophe Lincoln <pankso@slitaz.org>
date Fri Aug 07 12:00:01 2009 +0200 (2009-08-07)
parents fc471c5f5a90
children 2c110965aa8b
line source
1 # SliTaz package receipt.
3 PACKAGE="eet"
4 VERSION="1.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 libs."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="zlib jpeg openssl eina gnutls"
9 BUILD_DEPENDS="zlib-dev jpeg-dev openssl-dev eina-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.enlightenment.org/"
12 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/bin $fs/usr/bin
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }