pve-access-control/Makefile
Thomas Lamprecht 6a003c5a14 buildsys: don't pass arch for an arch: all package
it was wrong too anyway, if, one would need to use the
$(DEB_HOST_ARCH), as that's the one package is built for.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2023-05-21 11:22:02 +02:00

46 lines
995 B
Makefile

include /usr/share/dpkg/default.mk
PACKAGE=libpve-access-control
DEB=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_all.deb
DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc
BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
GITVERSION:=$(shell git rev-parse HEAD)
all:
.PHONY: dinstall
dinstall: deb
dpkg -i $(DEB)
$(BUILDDIR):
rm -rf $(BUILDDIR)
cp -a src $(BUILDDIR)
cp -a debian $(BUILDDIR)/
echo "git clone git://git.proxmox.com/git/pve-access-control.git\\ngit checkout $(GITVERSION)" > $(BUILDDIR)/debian/SOURCE
.PHONY: deb
deb: $(DEB)
$(DEB): $(BUILDDIR)
cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
lintian $(DEB)
.PHONY: dsc
dsc: $(DSC)
$(DSC): $(BUILDDIR)
cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d
lintian $(DSC)
.PHONY: upload
upload: $(DEB)
tar cf - $(DEB) | ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye
.PHONY: clean
clean:
rm -rf $(PACKAGE)-*/ *.deb *.buildinfo *.changes $(PACKAGE)*.tar.gz *.dsc
.PHONY: distclean
distclean: clean