wok-next diff vmtouch/receipt @ rev 20991

Update EDuke32, combine web apps
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Oct 04 06:46:42 2018 +0300 (2018-10-04)
parents 867f233184fc
children d5aab818505e
line diff
     1.1 --- a/vmtouch/receipt	Sat Aug 27 20:53:04 2016 +0100
     1.2 +++ b/vmtouch/receipt	Thu Oct 04 06:46:42 2018 +0300
     1.3 @@ -16,13 +16,13 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 -	gcc -Wall -O2 -o vmtouch vmtouch.c
     1.8 +	gcc -Wall -O2 -o vmtouch vmtouch.c &&
     1.9 +	mkdir -p $install/usr/bin &&
    1.10 +	cp -a $PACKAGE $install/usr/bin
    1.11  }
    1.12  
    1.13  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.14  genpkg_rules()
    1.15  {
    1.16 -	mkdir -p $fs/usr/bin
    1.17 -	cp -a $src/$PACKAGE $fs/usr/bin
    1.18 +	cp -a $install/usr $fs/
    1.19  }
    1.20 -