wok view eina/receipt @ rev 10121

gcc-lib-base: dont include french locale (we have base pkgs to fix before end usser one)
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 20 22:13:40 2011 +0200 (2011-05-20)
parents 85cd798d6997
children ab5e0d88250f
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.enlightenment.org/"
10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
12 DEPENDS=""
13 BUILD_DEPENDS="pkg-config"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --enable-amalgamation \
20 --enable-magic-debug \
21 --enable-safety-checks && \
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }