wok annotate eina/receipt @ rev 11585

gecko-mediaplayer: hack compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 08 17:32:11 2012 +0100 (2012-01-08)
parents 214dca097a22
children 3dc5fc75c81e
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@10622 11 TAGS="e17"
pankso@2916 12
pankso@9786 13 DEPENDS=""
pankso@10596 14 BUILD_DEPENDS=""
pankso@9786 15
pankso@2916 16 # Rules to configure and make the package.
pankso@2916 17 compile_rules()
pankso@2916 18 {
pankso@10496 19 ./configure \
gokhlayeh@8505 20 --enable-magic-debug \
slaxemulator@10318 21 --enable-safety-checks \
slaxemulator@10318 22 $CONFIGURE_ARGS && \
gokhlayeh@8505 23 make && make install
pankso@2916 24 }
pankso@2916 25
pankso@2916 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@2916 27 genpkg_rules()
pankso@2916 28 {
gokhlayeh@8505 29 mkdir -p $fs/usr/lib
pankso@2916 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@2916 31 }