wok view plm2c/receipt @ rev 17820

marlin: fix tests-pathbar.vala
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 22 09:52:23 2015 +0100 (2015-03-22)
parents b5f37c66eddd
children 25f321eee88e
line source
1 # SliTaz package receipt.
3 PACKAGE="plm2c"
4 VERSION="1.02"
5 CATEGORY="development"
6 SHORT_DESC="Convert PLM sources files to C language."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="unknown"
9 TARBALL="newplm.zip"
10 WEB_SITE="http://www.cpm.z80.de/source.html"
11 WGET_URL="http://www.cpm.z80.de/download/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 unzip PLM2C.ZIP
17 cd plm2c
18 sed -i '/strcat/d' misc.h
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 cp -a $src/plm2c/plm2c $fs/usr/bin
27 }