mirror of
https://git.proxmox.com/git/pve-http-server
synced 2025-08-14 11:42:07 +00:00
buildsys: split out build dir generation and add DSC target
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
a94bb39e70
commit
92efe072df
26
Makefile
26
Makefile
@ -3,22 +3,32 @@ include /usr/share/dpkg/pkg-info.mk
|
|||||||
PACKAGE=libpve-http-server-perl
|
PACKAGE=libpve-http-server-perl
|
||||||
|
|
||||||
GITVERSION:=$(shell git rev-parse HEAD)
|
GITVERSION:=$(shell git rev-parse HEAD)
|
||||||
BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
|
BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION)
|
||||||
|
|
||||||
DEB=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_all.deb
|
DSC=$(PACKAGE)_$(DEB_VERSION).dsc
|
||||||
|
DEB=$(PACKAGE)_$(DEB_VERSION)_all.deb
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
|
||||||
|
$(BUILDDIR): src debian
|
||||||
|
rm -rf $@ $@.tmp
|
||||||
|
cp -a src $@.tmp
|
||||||
|
cp -a debian $@.tmp/
|
||||||
|
echo "git clone git://git.proxmox.com/git/pve-http-server\\ngit checkout $(GITVERSION)" > $@.tmp/debian/SOURCE
|
||||||
|
mv $@.tmp $@
|
||||||
|
|
||||||
.PHONY: deb
|
.PHONY: deb
|
||||||
deb: $(DEB)
|
deb: $(DEB)
|
||||||
$(DEB):
|
$(DEB): $(BUILDDIR)
|
||||||
rm -rf $(BUILDDIR)
|
|
||||||
cp -a src $(BUILDDIR)
|
|
||||||
cp -a debian $(BUILDDIR)/
|
|
||||||
echo "git clone git://git.proxmox.com/git/pve-http-server\\ngit checkout $(GITVERSION)" > $(BUILDDIR)/debian/SOURCE
|
|
||||||
cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
|
cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
|
||||||
lintian $(DEB)
|
lintian $(DEB)
|
||||||
|
|
||||||
|
.PHONY: dsc
|
||||||
|
dsc: $(DSC)
|
||||||
|
$(DSC): $(BUILDDIR)
|
||||||
|
cd $(BUILDDIR); dpkg-buildpackage -S -us -uc
|
||||||
|
lintian $(DSC)
|
||||||
|
|
||||||
.PHONY: upload
|
.PHONY: upload
|
||||||
upload: $(DEB)
|
upload: $(DEB)
|
||||||
tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist bullseye
|
tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist bullseye
|
||||||
@ -29,7 +39,7 @@ distclean: clean
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(MAKE) -C src $@
|
$(MAKE) -C src $@
|
||||||
rm -rf $(PACKAGE)-*/ *.deb *.changes *.buildinfo $(BTDIR) examples/simple-demo.lck
|
rm -rf $(PACKAGE)-*/ *.deb *.dsc *.tar.* *.changes *.buildinfo examples/simple-demo.lck
|
||||||
|
|
||||||
.PHONY: dinstall
|
.PHONY: dinstall
|
||||||
dinstall: $(DEB)
|
dinstall: $(DEB)
|
||||||
|
Loading…
Reference in New Issue
Block a user