]> git.proxmox.com Git - libarchive-perl.git/blame - Makefile
buildsys: only call lintian for phony dsc target
[libarchive-perl.git] / Makefile
CommitLineData
edb94d26
TL
1include /usr/share/dpkg/pkg-info.mk
2
3PACKAGE=libarchive-perl
918a6904
DM
4
5# h2xs -Afn LibArchive
6# h2xs -an LibArchive /usr/include/archive.h /usr/include/archive_entry.h
7# perl Makefile.PL PREFIX=/usr
8
918a6904 9PPSRC = LibArchive
9d315569
RV
10
11ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
12GITVERSION:=$(shell git rev-parse HEAD)
13
11f05f2a
SI
14BUILDSRC=$(PACKAGE)-$(DEB_VERSION_UPSTREAM)
15DEB=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_$(ARCH).deb
16DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc
918a6904 17
11f05f2a 18all: $(DEB)
918a6904 19
f6970de9
SI
20.PHONY: update-bindings
21update-bindings:
11f05f2a 22 h2xs -M '^(archive|ARCHIVE)_' -v $(DEB_VERSION_UPSTREAM) -On LibArchive /usr/include/archive.h /usr/include/archive_entry.h -larchive
f6970de9
SI
23 echo "Please manually check and add the diff of the automatically generated update"
24
11f05f2a
SI
25.PHONY: $(BUILDSRC)
26$(BUILDSRC):
27 rm -rf $(BUILDSRC)
28 cp -a $(PPSRC)/ $(BUILDSRC)
29 cp -a debian $(BUILDSRC)
30 perl -MDevel::PPPort -e 'Devel::PPPort::WriteFile("$(BUILDSRC)/ppport.h");'
31 echo "git clone git://git.proxmox.com/git/pve-storage.git\\ngit checkout $(GITVERSION)" >$(BUILDSRC)/debian/SOURCE
9d315569
RV
32
33.PHONY: dsc
212cf626
SI
34dsc:
35 $(MAKE) $(DSC)
36 lintian $(DSC)
37
11f05f2a
SI
38$(DSC): $(BUILDSRC)
39 cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc
9d315569 40
214352bc
SI
41.PHONY: sbuild
42sbuild: $(DSC)
43 sbuild $(DSC)
44
9d315569 45.PHONY: deb
11f05f2a
SI
46deb: $(DEB)
47$(DEB): $(PPSRC)/LibArchive.xs $(BUILDSRC)
48 cd $(BUILDSRC); dpkg-buildpackage -b -us -uc -rfakeroot
49 lintian $(DEB)
918a6904
DM
50
51.phony: upload
11f05f2a
SI
52upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
53upload: $(DEB)
54 tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com -- upload --product pmg --dist $(UPLOAD_DIST)
918a6904 55
11f05f2a 56CLEANFILES = *~ build *.deb libarchive_* libarchive-perl_* $(BUILDSRC) *.buildinfo *.build *.dsc *tar.?z
918a6904
DM
57
58.phony: clean
59clean:
11f05f2a 60 rm -rf $(CLEANFILES)
eca488f9
DM
61
62.PHONY: dinstall
11f05f2a
SI
63dinstall: $(DEB)
64 dpkg -i $(DEB)