wok 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 | 784241c8e52c |
children | 0acf280acdef |
files | eina-dev/receipt eina/receipt embryo/receipt tmux/receipt |
line diff
1.1 --- a/eina-dev/receipt Sat Mar 22 20:20:40 2014 +0100 1.2 +++ b/eina-dev/receipt Sat Mar 22 20:32:09 2014 +0100 1.3 @@ -8,6 +8,7 @@ 1.4 LICENSE="LGPL2.1" 1.5 WANTED="eina" 1.6 WEB_SITE="http://www.enlightenment.org/" 1.7 +HOST_ARCH="i486 arm" 1.8 1.9 DEPENDS="pkg-config" 1.10
2.1 --- a/eina/receipt Sat Mar 22 20:20:40 2014 +0100 2.2 +++ b/eina/receipt Sat Mar 22 20:32:09 2014 +0100 2.3 @@ -10,6 +10,7 @@ 2.4 WEB_SITE="http://www.enlightenment.org/" 2.5 WGET_URL="http://download.enlightenment.org/releases/$TARBALL" 2.6 TAGS="e enlightenment efl" 2.7 +HOST_ARCH="i486 arm" 2.8 2.9 DEPENDS="" 2.10 BUILD_DEPENDS=""
3.1 --- a/embryo/receipt Sat Mar 22 20:20:40 2014 +0100 3.2 +++ b/embryo/receipt Sat Mar 22 20:32:09 2014 +0100 3.3 @@ -10,6 +10,7 @@ 3.4 WEB_SITE="http://www.enlightenment.org/" 3.5 WGET_URL="http://download.enlightenment.org/releases/$TARBALL" 3.6 TAGS="e enlightenment efl" 3.7 +HOST_ARCH="i486 arm" 3.8 3.9 DEPENDS="eina" 3.10 BUILD_DEPENDS="eina-dev" 3.11 @@ -17,6 +18,9 @@ 3.12 # Rules to configure and make the package. 3.13 compile_rules() 3.14 { 3.15 + export CPPFLAGS="-I/cross/$ARCH/sysroot/usr/include -I/cross/$ARCH/sysroot/usr/include/eina-1" 3.16 + export LDFLAGS="-L/cross/$ARCH/sysroot/usr/lib" 3.17 + export PKG_CONFIG_PATH="/cross/$ARCH/sysroot/usr/lib/pkgconfig:/usr/lib/pkgconfig" 3.18 ./configure $CONFIGURE_ARGS && 3.19 make $MAKEFLAGS && make install 3.20 }
4.1 --- a/tmux/receipt Sat Mar 22 20:20:40 2014 +0100 4.2 +++ b/tmux/receipt Sat Mar 22 20:32:09 2014 +0100 4.3 @@ -9,6 +9,7 @@ 4.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 4.5 WEB_SITE="http://tmux.sourceforge.net/" 4.6 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 4.7 +HOST_ARCH="i486 arm" 4.8 4.9 DEPENDS="ncursesw libevent" 4.10 BUILD_DEPENDS="ncursesw-dev libevent-dev" 4.11 @@ -16,8 +17,6 @@ 4.12 # Rules to configure and make the package. 4.13 compile_rules() 4.14 { 4.15 - cd $src 4.16 - 4.17 ./configure $CONFIGURE_ARGS && 4.18 make PREFIX=/usr && 4.19 make PREFIX=/usr install &&