You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.1 KiB
76 lines
2.1 KiB
#!/usr/bin/make -f
|
|
# Sample debian/rules that uses debhelper.
|
|
# GNU copyright 1997 to 1999 by Joey Hess.
|
|
|
|
PACKAGES = $(shell dh_listpackages -s)
|
|
DHCP_PACKAGES = netcfg netcfg-dhcp
|
|
|
|
build: build-stamp
|
|
build-stamp:
|
|
dh_testdir
|
|
|
|
# Add here commands to compile the package.
|
|
$(MAKE)
|
|
|
|
touch build-stamp
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
rm -f build-stamp
|
|
|
|
# Add here commands to clean up after the build process.
|
|
-$(MAKE) clean
|
|
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_installdirs -A usr/lib/prebaseconfig.d etc/network bin
|
|
# Install files that are the same in all packages
|
|
$(foreach PACKAGE, $(PACKAGES), \
|
|
install -m 755 $(PACKAGE) debian/$(PACKAGE)/bin/netcfg; \
|
|
install -m 755 prebaseconfig debian/$(PACKAGE)/usr/lib/prebaseconfig.d/40netcfg ; \
|
|
ln -sf netcfg debian/$(PACKAGE)/bin/ptom; )
|
|
# Install files that are in all DHCP packages
|
|
$(foreach PACKAGE, $(DHCP_PACKAGES), \
|
|
mkdir -p debian/$(PACKAGE)/etc/dhcp debian/$(PACKAGE)/etc/dhcp3; \
|
|
mkdir -p debian/$(PACKAGE)/var/dhcp ; \
|
|
install -m 755 killall.sh debian/$(PACKAGE)/bin/killall.sh; \
|
|
install -m 755 dhclient-script debian/$(PACKAGE)/etc/dhcp3/dhclient-script; \
|
|
install -m 755 dhclient-script debian/$(PACKAGE)/etc/dhclient-script; )
|
|
|
|
|
|
# Build architecture-independent files here.
|
|
binary-indep: build install
|
|
# We have nothing to do by default.
|
|
|
|
# Build architecture-dependent files here.
|
|
binary-arch: build install
|
|
dh_testdir
|
|
dh_testroot
|
|
|
|
dh_installdebconf
|
|
|
|
(echo ; po2debconf debian/netcfg-common.templates ) \
|
|
>> debian/netcfg-static/DEBIAN/templates
|
|
(echo ; po2debconf debian/netcfg-common.templates )\
|
|
>> debian/netcfg-dhcp/DEBIAN/templates
|
|
(echo ; po2debconf debian/netcfg-common.templates )\
|
|
>> debian/netcfg/DEBIAN/templates
|
|
(echo ; po2debconf debian/netcfg-dhcp.templates )\
|
|
>> debian/netcfg/DEBIAN/templates
|
|
(echo ; po2debconf debian/netcfg-static.templates )\
|
|
>> debian/netcfg/DEBIAN/templates
|
|
dh_strip -s
|
|
dh_compress -s
|
|
dh_fixperms -s
|
|
dh_installdeb -s
|
|
dh_shlibdeps -s
|
|
dh_gencontrol -s
|
|
dh_builddeb -s
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install
|
|
|