pve-apiclient/Makefile

46 lines
1.0 KiB
Makefile
Raw Normal View History

include /usr/share/dpkg/default.mk
2016-12-16 11:21:41 +03:00
PACKAGE=libpve-apiclient-perl
BUILDSRC := $(PACKAGE)-$(DEB_VERSION)
DEB=$(PACKAGE)_$(DEB_VERSION)_all.deb
DSC=$(PACKAGE)_$(DEB_VERSION).dsc
2016-12-16 11:21:41 +03:00
DESTDIR=
PERL5DIR=$(DESTDIR)/usr/share/perl5
DOCDIR=$(DESTDIR)/usr/share/doc/$(PACKAGE)
2016-12-16 11:21:41 +03:00
GITVERSION:=$(shell git rev-parse HEAD)
all: $(DEB)
2016-12-16 11:21:41 +03:00
.PHONY: $(BUILDSRC)
$(BUILDSRC):
rm -rf $@ $@.tmp
cp -a src $@.tmp
cp -a debian $@.tmp/
echo "git clone git://git.proxmox.com/git/pve-apiclient.git\\ngit checkout $(GITVERSION)" >$@.tmp/debian/SOURCE
mv $@.tmp $@
2016-12-16 11:21:41 +03:00
.PHONY: deb
deb $(DEB): $(BUILDSRC)
cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc
lintian $(DEB)
2016-12-16 11:21:41 +03:00
.PHONY: dsc
dsc: $(BUILDSRC)
cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc
lintian $(DSC)
2016-12-16 11:21:41 +03:00
.PHONY: upload
upload: $(DEB)
tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist bullseye
2016-12-16 11:21:41 +03:00
distclean: clean
clean:
rm -rf $(PACKAGE)-[0-9]*/ *.deb *.changes *.buildinfo *.build *.dsc *.tar.*
2016-12-16 11:23:14 +03:00
.PHONY: dinstall
dinstall: $(DEB)
dpkg -i $(DEB)