wok view eet/receipt @ rev 5759

Up: PyQt-x11-gpl (4.7.3) Fix: it now confirms license
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Jul 04 15:44:26 2010 -0400 (2010-07-04)
parents 41510b481553
children 85cd798d6997
line source
1 # SliTaz package receipt.
3 PACKAGE="eet"
4 VERSION="1.2.3"
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 --disable-gnutls \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr/bin
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 }