wok view eina/receipt @ rev 10597

lirc: fix bdeps and kernel ERROR message
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 26 14:55:42 2011 +0200 (2011-05-26)
parents 317c1d26cae7
children cf214eecc1b5
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"
12 DEPENDS=""
13 BUILD_DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --enable-magic-debug \
20 --enable-safety-checks \
21 $CONFIGURE_ARGS && \
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 }