wok diff plm2c/receipt @ rev 16819

auth test, fix dep
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Fri Jul 11 10:31:39 2014 +0000 (2014-07-11)
parents
children ca4434937abf
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/plm2c/receipt	Fri Jul 11 10:31:39 2014 +0000
     1.3 @@ -0,0 +1,27 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="plm2c"
     1.7 +VERSION="unknown"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Convert PLM sources files to C language."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="unknown"
    1.12 +TARBALL="newplm.zip"
    1.13 +WEB_SITE="http://www.cpm.z80.de/source.html"
    1.14 +WGET_URL="http://www.cpm.z80.de/download/$TARBALL"
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +compile_rules()
    1.18 +{
    1.19 +	unzip PLM2C.ZIP
    1.20 +	cd plm2c
    1.21 +	sed -i '/strcat/d' misc.h
    1.22 +	make
    1.23 +}
    1.24 +
    1.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.26 +genpkg_rules()
    1.27 +{
    1.28 +	mkdir -p $fs/usr/bin
    1.29 +	cp -a $src/plm2c/plm2c $fs/usr/bin
    1.30 +}