]> git.proxmox.com Git - mirror_zfs.git/blob - config/deb.am
Change target size of metaslabs from 256GB to 16GB
[mirror_zfs.git] / config / deb.am
1 deb-local:
2 @(if test "${HAVE_DPKGBUILD}" = "no"; then \
3 echo -e "\n" \
4 "*** Required util ${DPKGBUILD} missing. Please install the\n" \
5 "*** package for your distribution which provides ${DPKGBUILD},\n" \
6 "*** re-run configure, and try again.\n"; \
7 exit 1; \
8 fi; \
9 if test "${HAVE_ALIEN}" = "no"; then \
10 echo -e "\n" \
11 "*** Required util ${ALIEN} missing. Please install the\n" \
12 "*** package for your distribution which provides ${ALIEN},\n" \
13 "*** re-run configure, and try again.\n"; \
14 exit 1; \
15 fi)
16
17 deb-kmod: deb-local rpm-kmod
18 name=${PACKAGE}; \
19 version=${VERSION}-${RELEASE}; \
20 arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
21 debarch=`$(DPKG) --print-architecture`; \
22 pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
23 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch $$pkg1; \
24 $(RM) $$pkg1
25
26
27 deb-dkms: deb-local rpm-dkms
28 name=${PACKAGE}; \
29 version=${VERSION}-${RELEASE}; \
30 arch=`$(RPM) -qp $${name}-dkms-$${version}.src.rpm --qf %{arch} | tail -1`; \
31 debarch=`$(DPKG) --print-architecture`; \
32 pkg1=$${name}-dkms-$${version}.$${arch}.rpm; \
33 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch $$pkg1; \
34 $(RM) $$pkg1
35
36 deb-utils: deb-local rpm-utils
37 name=${PACKAGE}; \
38 version=${VERSION}-${RELEASE}; \
39 arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
40 debarch=`$(DPKG) --print-architecture`; \
41 pkg1=$${name}-$${version}.$${arch}.rpm; \
42 pkg2=libnvpair1-$${version}.$${arch}.rpm; \
43 pkg3=libuutil1-$${version}.$${arch}.rpm; \
44 pkg4=libzfs2-$${version}.$${arch}.rpm; \
45 pkg5=libzpool2-$${version}.$${arch}.rpm; \
46 pkg6=libzfs2-devel-$${version}.$${arch}.rpm; \
47 pkg7=$${name}-test-$${version}.$${arch}.rpm; \
48 pkg8=$${name}-dracut-$${version}.$${arch}.rpm; \
49 pkg9=$${name}-initramfs-$${version}.$${arch}.rpm; \
50 pkg10=`ls python*-pyzfs-$${version}* | tail -1`; \
51 ## Arguments need to be passed to dh_shlibdeps. Alien provides no mechanism
52 ## to do this, so we install a shim onto the path which calls the real
53 ## dh_shlibdeps with the required arguments.
54 path_prepend=`mktemp -d /tmp/intercept.XXX`; \
55 echo "#$(SHELL)" > $${path_prepend}/dh_shlibdeps; \
56 echo "`which dh_shlibdeps` -- \
57 -xlibuutil1linux -xlibnvpair1linux -xlibzfs2linux -xlibzpool2linux" \
58 >> $${path_prepend}/dh_shlibdeps; \
59 ## These -x arguments are passed to dpkg-shlibdeps, which exclude the
60 ## Debianized packages from the auto-generated dependencies of the new debs,
61 ## which should NOT be mixed with the alien-generated debs created here
62 chmod +x $${path_prepend}/dh_shlibdeps; \
63 env PATH=$${path_prepend}:$${PATH} \
64 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch \
65 $$pkg1 $$pkg2 $$pkg3 $$pkg4 $$pkg5 $$pkg6 $$pkg7 \
66 $$pkg8 $$pkg9 $$pkg10; \
67 $(RM) $${path_prepend}/dh_shlibdeps; \
68 rmdir $${path_prepend}; \
69 $(RM) $$pkg1 $$pkg2 $$pkg3 $$pkg4 $$pkg5 $$pkg6 $$pkg7 \
70 $$pkg8 $$pkg9 $$pkg10;
71
72 deb: deb-kmod deb-dkms deb-utils