wok-next view enki/receipt @ rev 21005
Small updates
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Mon Oct 08 11:41:17 2018 +0300 (2018-10-08) |
parents | 223b265f40fd |
children | d5aab818505e |
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="https://web.archive.org/web/20170312092223/http://home.gna.org/enki/"
11 # https://github.com/enki-community/enki
12 WGET_URL="svn|svn://svn.gna.org/svn/enki/trunk" # FIXME
14 DEPENDS=""
15 BUILD_DEPENDS="subversion cmake"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 cmake -DCMAKE_INSTALL_PREFIX=/usr . &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/* $fs/usr
30 }