wok view enki/receipt @ rev 16115

ARM: add libevent
author Christophe Lincoln <pankso@slitaz.org>
date Sat Mar 22 20:20:40 2014 +0100 (2014-03-22)
parents d91b7f34ff8b
children e3f377fbc5f0
line source
1 # SliTaz package receipt.
3 PACKAGE="enki"
4 VERSION="2.0"
5 CATEGORY="development"
6 SHORT_DESC="The fast 2D robot simulator"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://home.gna.org/enki/"
11 WGET_URL="svn|svn://svn.gna.org/svn/enki/trunk"
13 DEPENDS=""
14 BUILD_DEPENDS="subversion cmake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 cmake -DCMAKE_INSTALL_PREFIX=/usr . &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/* $fs/usr
29 }