wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="eina"
4 VERSION="1.0.1"
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"
11 TAGS="e17"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --enable-magic-debug \
21 --enable-safety-checks \
22 $CONFIGURE_ARGS && \
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }