mirror of
git://git.proxmox.com/git/pve-http-server.git
synced 2025-01-08 21:18:02 +03:00
46b962f6b1
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
38 lines
886 B
Makefile
38 lines
886 B
Makefile
include /usr/share/dpkg/pkg-info.mk
|
|
|
|
PACKAGE=libpve-http-server-perl
|
|
|
|
GITVERSION:=$(shell git rev-parse HEAD)
|
|
BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
|
|
|
|
DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
|
|
|
|
all:
|
|
|
|
.PHONY: deb
|
|
deb: ${DEB}
|
|
${DEB}:
|
|
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
|
|
lintian ${DEB}
|
|
|
|
.PHONY: upload
|
|
upload: ${DEB}
|
|
tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist bullseye
|
|
|
|
.PHONY: clean distclean
|
|
distclean: clean
|
|
${MAKE} -C src $@
|
|
|
|
clean:
|
|
${MAKE} -C src $@
|
|
rm -rf ${PACKAGE}-*/ *.deb *.changes *.buildinfo ${BTDIR} examples/simple-demo.lck
|
|
find . -name '*~' -exec rm {} ';'
|
|
|
|
.PHONY: dinstall
|
|
dinstall: ${DEB}
|
|
dpkg -i ${DEB}
|