File: rules

package info (click to toggle)
partman-base 165
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,964 kB
  • sloc: ansic: 2,349; sh: 2,269; makefile: 34
file content (29 lines) | stat: -rwxr-xr-x 741 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#! /usr/bin/make -f
%:
	dh $@ --with d-i

ARCH_OS=$(shell dpkg-architecture -qDEB_HOST_ARCH_OS)

ifeq ($(ARCH_OS),linux)
DEFAULT_FS=ext4
endif
ifeq ($(ARCH_OS),kfreebsd)
DEFAULT_FS=ufs
endif
ifeq ($(ARCH_OS),hurd)
DEFAULT_FS=ext2
endif

PROVIDES=made-filesystems, mounted-partitions, partitioned-harddrives, created-fstab

MENUITEMNUM=4200

override_dh_installdebconf:
	dh_installdebconf
	sed -i '/^Template: partman\/default_filesystem/,/^$$/s/^Default: .*/Default: $(DEFAULT_FS)/' \
		debian/partman-base/DEBIAN/templates

# TODO: This is a bit gratuitous since all the "variables" are constant
# right now. Do we still need this flexibility?
override_dh_gencontrol:
	dh_gencontrol -- -Vmenuitemnum=$(MENUITEMNUM) -Vprovides='$(PROVIDES)'