wok view plm2c/receipt @ rev 20701

updated airgeddon (3.31 -> 8.12)
author Hans-G?nter Theisgen
date Tue Feb 05 17:16:21 2019 +0100 (2019-02-05)
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 }