wok view edje/receipt @ rev 13847

frogatto: try to fix build (Boost 1.47 removed a deprecated function...) btw, we use boost 1.50
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jan 09 01:13:47 2013 +0000 (2013-01-09)
parents c39e463afc91
children 179fb827a652
line source
1 # SliTaz package receipt.
3 PACKAGE="edje"
4 VERSION="1.7.1"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 libs."
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 evas embryo ecore lua5.1"
13 BUILD_DEPENDS="eina-dev eet-dev evas-dev embryo-dev ecore-dev lua5.1-dev \
14 jpeg-dev expat-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/bin $fs/usr
27 cp -a $install/usr/share $fs/usr
28 chmod 755 $fs/usr/bin/*
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 cp -a $install/usr/lib/edje $fs/usr/lib
31 }