wok view dhcp-client/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents e05d978e5ab8
children e3178e8508fc
line source
1 # SliTaz package receipt.
3 PACKAGE="dhcp-client"
4 VERSION="4.4.1"
5 CATEGORY="network"
6 SHORT_DESC="Dynamic Host Configuration Protocol ISC client."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="ISC"
9 WEB_SITE="http://www.isc.org/"
11 WANTED="dhcp"
12 DEPENDS="libcrypto"
13 CONFIG_FILES="/etc/dhclient.conf"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/usr/sbin $fs/usr/bin $fs/etc
19 cp $install/etc/dhclient.conf.example $fs/etc/dhclient.conf
20 cp $src/client/scripts/linux $fs/etc/dhclient-script
21 cp $install/usr/sbin/dhclient $fs/usr/sbin
22 cp $install/usr/bin/omshell $fs/usr/bin
23 }