]> git.proxmox.com Git - mirror_spl-debian.git/blame - config/deb.am
dch: close a bug and refresh timestamp.
[mirror_spl-debian.git] / config / deb.am
CommitLineData
287b2fb1
BB
1###############################################################################
2# Copyright (C) 2010 Lawrence Livermore National Security, LLC.
3# Written by Brian Behlendorf <behlendorf1@llnl.gov>.
4###############################################################################
5# Build targets for DEB packages.
6#
7# Long term native distro specific Debian style packaging should be added.
8# In the short term RPM packages are built and converted to DEB packages
9# using alien. If someone familiar with Debian style packaging were to
10# update the build system to correctly build Debian style packages I would
11# happily take it. Until then we will have to make due with alien.
12#
13###############################################################################
14
15deb-local:
16 @(if test "${HAVE_DPKGBUILD}" = "no"; then \
17 echo -e "\n" \
18 "*** Required util ${DPKGBUILD} missing. Please install the\n" \
19 "*** package for your distribution which provides ${DPKGBUILD},\n" \
20 "*** re-run configure, and try again.\n"; \
21 exit 1; \
22 fi; \
23 if test "${HAVE_ALIEN}" = "no"; then \
24 echo -e "\n" \
25 "*** Required util ${ALIEN} missing. Please install the\n" \
26 "*** package for your distribution which provides ${ALIEN},\n" \
27 "*** re-run configure, and try again.\n"; \
28 exit 1; \
29 fi)
30
493972c8 31deb-kmod: deb-local rpm-kmod
493972c8
BB
32 name=${PACKAGE}; \
33 version=${VERSION}-${RELEASE}; \
34 arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
f3bc16ff 35 debarch=`$(DPKG) --print-architecture`; \
493972c8 36 pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
f3bc16ff 37 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch $$pkg1; \
493972c8 38 $(RM) $$pkg1
4a691129
AX
39
40deb-dkms: deb-local rpm-dkms
41 name=${PACKAGE}; \
42 version=${VERSION}-${RELEASE}; \
43 arch=`$(RPM) -qp $${name}-dkms-$${version}.src.rpm --qf %{arch} | tail -1`; \
f3bc16ff 44 debarch=`$(DPKG) --print-architecture`; \
4a691129 45 pkg1=$${name}-dkms-$${version}.$${arch}.rpm; \
f3bc16ff 46 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch $$pkg1; \
4a691129 47 $(RM) $$pkg1
287b2fb1
BB
48
49deb-utils: deb-local rpm-utils
50 name=${PACKAGE}; \
493972c8 51 version=${VERSION}-${RELEASE}; \
a32661a6 52 arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
f3bc16ff 53 debarch=`$(DPKG) --print-architecture`; \
287b2fb1 54 pkg1=$${name}-$${version}.$${arch}.rpm; \
f3bc16ff 55 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch $$pkg1; \
287b2fb1
BB
56 $(RM) $$pkg1
57
4a691129 58deb: deb-kmod deb-dkms deb-utils