wok annotate eina/receipt @ rev 9062

linux-wireless: update modules list (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 04 13:15:00 2011 +0100 (2011-03-04)
parents f99c07c038f7
children e1bff384cd9d
rev   line source
pankso@2916 1 # SliTaz package receipt.
pankso@2916 2
pankso@2916 3 PACKAGE="eina"
gokhlayeh@8505 4 VERSION="1.0.0"
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 DEPENDS=""
pankso@2916 9 BUILD_DEPENDS="pkg-config"
pankso@2916 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@2916 11 WEB_SITE="http://www.enlightenment.org/"
gokhlayeh@8505 12 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
pankso@2916 13
pankso@2916 14 # Rules to configure and make the package.
pankso@2916 15 compile_rules()
pankso@2916 16 {
pankso@2916 17 cd $src
gokhlayeh@8505 18 ./configure --enable-amalgamation \
gokhlayeh@8505 19 --enable-magic-debug \
gokhlayeh@8505 20 --enable-safety-checks && \
gokhlayeh@8505 21 make && make install
pankso@2916 22 }
pankso@2916 23
pankso@2916 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@2916 25 genpkg_rules()
pankso@2916 26 {
gokhlayeh@8505 27 mkdir -p $fs/usr/lib
pankso@2916 28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@2916 29 }
pankso@2916 30