wok annotate eina/receipt @ rev 9786

ecore, eet, eina, evas: fix BUILD_DEPENDS and typo in DEPENDS (aina --> eina)
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 12 15:33:34 2011 +0200 (2011-05-12)
parents 85cd798d6997
children ab5e0d88250f
rev   line source
pankso@2916 1 # SliTaz package receipt.
pankso@2916 2
pankso@2916 3 PACKAGE="eina"
gokhlayeh@8505 4 VERSION="1.0.0"
gokhlayeh@8505 5 CATEGORY="base-system"
gokhlayeh@8505 6 SHORT_DESC="Enlightenment's data types library (List, hash, etc) in C."
pankso@2916 7 MAINTAINER="pankso@slitaz.org"
pankso@2916 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@2916 9 WEB_SITE="http://www.enlightenment.org/"
gokhlayeh@8505 10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
pankso@2916 11
pankso@9786 12 DEPENDS=""
pankso@9786 13 BUILD_DEPENDS="pkg-config"
pankso@9786 14
pankso@2916 15 # Rules to configure and make the package.
pankso@2916 16 compile_rules()
pankso@2916 17 {
pankso@2916 18 cd $src
gokhlayeh@8505 19 ./configure --enable-amalgamation \
gokhlayeh@8505 20 --enable-magic-debug \
gokhlayeh@8505 21 --enable-safety-checks && \
gokhlayeh@8505 22 make && make install
pankso@2916 23 }
pankso@2916 24
pankso@2916 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@2916 26 genpkg_rules()
pankso@2916 27 {
gokhlayeh@8505 28 mkdir -p $fs/usr/lib
pankso@2916 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@2916 30 }