wok annotate dhcp6-client/receipt @ rev 20068
busybox/udhcpc6: update script (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Sep 23 16:49:43 2017 +0200 (2017-09-23) |
parents | 7008b10a1996 |
children | 624fe47fb580 |
rev | line source |
---|---|
pascal@3350 | 1 # SliTaz package receipt. |
pascal@3350 | 2 |
pascal@3350 | 3 PACKAGE="dhcp6-client" |
slaxemulator@11096 | 4 VERSION="4.2.2" |
pascal@3350 | 5 CATEGORY="network" |
pascal@3350 | 6 SHORT_DESC="Dynamic Host Configuration Protocol ISC client with ipv6 support." |
pascal@3350 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15579 | 8 LICENSE="ISC" |
pascal@3350 | 9 WEB_SITE="http://www.isc.org/products/DHCP/" |
pascal@3350 | 10 WANTED="dhcp6" |
pascal@3350 | 11 DEPENDS="libcrypto" |
pascal@3350 | 12 CONFIG_FILES="/etc/dhclient.conf" |
pascal@3350 | 13 PROVIDE="dhcp-client" |
pascal@3350 | 14 |
pascal@3350 | 15 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3350 | 16 genpkg_rules() |
pascal@3350 | 17 { |
pascal@3350 | 18 mkdir -p $fs/usr/sbin $fs/usr/bin $fs/etc |
pascal@15579 | 19 cp $install/etc/dhclient.conf $fs/etc |
slaxemulator@8771 | 20 cp $src/client/scripts/linux $fs/etc/dhclient-script |
pascal@15579 | 21 cp $install/usr/sbin/dhclient $fs/usr/sbin |
pascal@15579 | 22 cp $install/usr/bin/omshell $fs/usr/bin |
pascal@3350 | 23 } |
pascal@3350 | 24 |