]> git.proxmox.com Git - mirror_spl-debian.git/blob - debian/rules
Merge branch 'upstream'
[mirror_spl-debian.git] / debian / rules
1 #!/usr/bin/make -f
2
3 NAME := $(shell awk '/^Name:/{print $$2}' META)
4 VERSION := $(shell awk '/^Version:/{print $$2}' META)
5
6 %:
7 dh $@
8
9 override_dh_auto_configure:
10 # Build the userland, but don't build the kernel modules.
11 ./configure --prefix=/usr --with-config=user
12
13 override_dh_auto_test:
14 # scripts/check.sh tries insmod and rmmod, so it cannot
15 # run in an unprivileged build environment.
16
17 override_dh_auto_install:
18 # Install the utilities.
19 make install DESTDIR='$(CURDIR)/debian/tmp'
20
21 # Create a dummy hostid file for the zfs-initramfs package.
22 # NB: Commentary in the spl.postinst script.
23 mkdir -p '$(CURDIR)/debian/tmp/etc/'
24 /usr/bin/printf '\xFF\xFF\xFF\xFF' >'$(CURDIR)/debian/tmp/etc/hostid'
25
26 # Get a bare copy of the source code.
27 # This creates the $(CURDIR)/$(NAME)-$(VERSION)/ tree.
28 make distdir
29
30 # This shunt allows DKMS to delete header files that are peculiar to each
31 # module instance through the POST_REMOVE directive in the dkms.conf file.
32 echo '#!/bin/sh' >'$(CURDIR)/$(NAME)-$(VERSION)/rm'
33 echo 'rm "$$@"' >>'$(CURDIR)/$(NAME)-$(VERSION)/rm'
34 chmod 755 '$(CURDIR)/$(NAME)-$(VERSION)/rm'
35
36 # Install the DKMS source.
37 mkdir -p '$(CURDIR)/debian/tmp/usr/src/'
38 mv '$(CURDIR)/$(NAME)-$(VERSION)' '$(CURDIR)/debian/tmp/usr/src/'
39
40 # Install the dkms.conf file.
41 dh_dkms -V $(VERSION)
42
43 # @FIXME: `make distclean` fails when --with-config=user is set.
44 # Kludge by creating dummy makefiles.
45 echo 'distclean:' >$(CURDIR)/include/Makefile
46 echo ' -rm -f Makefile' >>$(CURDIR)/include/Makefile
47 echo 'distclean:' >$(CURDIR)/module/Makefile
48 echo ' -rm -f Makefile' >>$(CURDIR)/module/Makefile