wok view edje/receipt @ rev 2953

Fix: Mitter (category)
author Claudinei Pereira <claudinei@slitaz.org>
date Fri May 08 11:59:03 2009 +0000 (2009-05-08)
parents fc471c5f5a90
children 236a47acb6f7
line source
1 # SliTaz package receipt.
3 PACKAGE="edje"
4 VERSION="0.9.92.060"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 libs."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="eet evas ecore embryo libcurl openssl"
9 BUILD_DEPENDS="pkg-config eet evas ecore embryo eet-dev embryo-dev \
10 evas-dev ecore-dev ecore"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.enlightenment.org/"
13 WGET_URL="http://download.enlightenment.org/snapshots/2009-04-22/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/share $fs/usr
34 chmod 755 $fs/usr/bin/*
35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 }