wok diff fcron/receipt @ rev 20632
linld: 32 bits lseeks for tazboot
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jan 05 17:23:23 2019 +0100 (2019-01-05) |
parents | 9d97bcfbe863 |
children | 10318df32b5c |
line diff
1.1 --- a/fcron/receipt Tue Dec 03 19:03:03 2013 +0000 1.2 +++ b/fcron/receipt Sat Jan 05 17:23:23 2019 +0100 1.3 @@ -17,7 +17,6 @@ 1.4 # Rules to configure and make the package. 1.5 compile_rules() 1.6 { 1.7 - cd $src 1.8 ./configure \ 1.9 --prefix=/usr \ 1.10 --sysconfdir=/etc \ 1.11 @@ -38,11 +37,12 @@ 1.12 # Rules to gen a SliTaz package suitable for Tazpkg. 1.13 genpkg_rules() 1.14 { 1.15 - mkdir -p $fs/usr/ 1.16 + mkdir -p $fs/usr/ $fs/etc/init.d 1.17 + 1.18 cp -a $install/usr/bin $fs/usr 1.19 cp -a $install/usr/sbin/fcron $fs/usr/bin 1.20 - cp -a $install/var $fs/ 1.21 - cp -a $install/etc $fs/ 1.22 - 1.23 + cp -a $install/var $fs 1.24 + cp -a $install/etc $fs 1.25 + 1.26 cp -a stuff/fcron $fs/etc/init.d 1.27 }