wok annotate eina/receipt @ rev 9441

Remove esmart-dev.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Mar 31 21:10:15 2011 +0000 (2011-03-31)
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