wok view xlogo/receipt @ rev 15601

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 20:23:08 2013 +0000 (2013-12-05)
parents b2a632fc9587
children
line source
1 # SliTaz package receipt.
3 PACKAGE="xlogo"
4 VERSION="0.9.959"
5 CATEGORY="games"
6 SHORT_DESC="A logo interpreter written in java."
7 MAINTAINER="claudinei@slitaz.org"
8 LICENSE="GPL"
9 TARBALL="xlogo.jar"
10 WEB_SITE="http://xlogo.tuxfamily.org"
12 DEPENDS="java-jre"
13 BUILD_DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 wget_url="http://downloads.tuxfamily.org/xlogo/common/xlogo.jar"
19 [ -f $SOURCES_REPOSITORY/xlogo.jar ] ||
20 wget $wget_url -P $SOURCES_REPOSITORY
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib/xlogo
27 cp $SOURCES_REPOSITORY/xlogo.jar $fs/usr/lib/xlogo
28 }