wok view eina/receipt @ rev 9441

Remove esmart-dev.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Mar 31 21:10:15 2011 +0000 (2011-03-31)
parents f99c07c038f7
children e1bff384cd9d
line source
1 # SliTaz package receipt.
3 PACKAGE="eina"
4 VERSION="1.0.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Enlightenment's data types library (List, hash, etc) in C."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS=""
9 BUILD_DEPENDS="pkg-config"
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 --enable-magic-debug \
20 --enable-safety-checks && \
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }