wok view eet/receipt @ rev 9932

gpa: fix bdeps
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed May 18 00:09:49 2011 +0200 (2011-05-18)
parents 85cd798d6997
children ec417fcd0d02
line source
1 # SliTaz package receipt.
3 PACKAGE="eet"
4 VERSION="1.4.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Enlightenment's file chunk reading/writing library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.enlightenment.org/"
10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
12 DEPENDS="zlib jpeg eina gnutls openssl"
13 BUILD_DEPENDS="eina-dev gnutls-dev openssl-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --enable-amalgamation && \
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/bin $fs/usr/bin
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }