wok view evas/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents fe57bf03de94
children 3a0bdf418905
line source
1 # SliTaz package receipt.
3 PACKAGE="evas"
4 VERSION="1.0.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Enlightenment's hardware-accelerated retained canvas API"
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="eina eet"
13 BUILD_DEPENDS="eina-dev eet-dev libpng-dev jpeg-dev expat-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure $CONFIGURE_ARGS && make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
26 cp -a $_pkg/usr/lib/evas $fs/usr/lib
27 rm -rf $fs/usr/lib/evas/modules/*/*/*/*.*a
28 }