wok view eet/receipt @ rev 9225

busybox: fix cksum applet
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 11 18:53:09 2011 +0100 (2011-03-11)
parents 55cde812bbe6
children e1bff384cd9d
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 DEPENDS="zlib jpeg eina gnutls openssl"
9 BUILD_DEPENDS=""
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 --enable-amalgamation && \
19 make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/bin $fs/usr/bin
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 }