wok annotate eina/receipt @ rev 10496

eina: up to fix e17 build (1.0.1)
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 25 13:56:24 2011 +0200 (2011-05-25)
parents ab5e0d88250f
children 214dca097a22
rev   line source
pankso@2916 1 # SliTaz package receipt.
pankso@2916 2
pankso@2916 3 PACKAGE="eina"
pankso@10496 4 VERSION="1.0.1"
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@10496 18 ./configure \
gokhlayeh@8505 19 --enable-magic-debug \
slaxemulator@10318 20 --enable-safety-checks \
slaxemulator@10318 21 $CONFIGURE_ARGS && \
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 }