wok view embryo/receipt @ rev 16116

ARM: add tmux (Paul you need a RaspberryPi :-)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Mar 22 20:32:09 2014 +0100 (2014-03-22)
parents d9de898378a5
children 0efad4f40bd9
line source
1 # SliTaz package receipt.
3 PACKAGE="embryo"
4 VERSION="1.7.9"
5 CATEGORY="base-system"
6 SHORT_DESC="EFL Small Pawn based virtual machine and compiler."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.enlightenment.org/"
11 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
12 TAGS="e enlightenment efl"
13 HOST_ARCH="i486 arm"
15 DEPENDS="eina"
16 BUILD_DEPENDS="eina-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 export CPPFLAGS="-I/cross/$ARCH/sysroot/usr/include -I/cross/$ARCH/sysroot/usr/include/eina-1"
22 export LDFLAGS="-L/cross/$ARCH/sysroot/usr/lib"
23 export PKG_CONFIG_PATH="/cross/$ARCH/sysroot/usr/lib/pkgconfig:/usr/lib/pkgconfig"
24 ./configure $CONFIGURE_ARGS &&
25 make $MAKEFLAGS && make 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 $install/usr/share $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }