wok view eina/receipt @ rev 10582

openvas-client: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 26 09:10:42 2011 +0200 (2011-05-26)
parents ab5e0d88250f
children 214dca097a22
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="pkg-config"
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 }