52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
#include /usr/share/dpkg/pkg-info.mk
|
|
export DEB_VERSION_UPSTREAM_REVISION
|
|
|
|
export PACKAGE=proxmox-widget-toolkit
|
|
|
|
DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
|
|
DEV_DEB=${PACKAGE}-dev_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
|
|
|
|
DEBS=${DEB} ${DEV_DEB}
|
|
DSC=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}.dsc
|
|
|
|
BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
|
|
|
|
${BUILDDIR}: GITVERSION:=$(shell git rev-parse HEAD)
|
|
${BUILDDIR}:
|
|
rm -rf ${BUILDDIR} ${BUILDDIR}.tmp
|
|
cp -a src/ ${BUILDDIR}.tmp
|
|
cp -a debian ${BUILDDIR}.tmp/
|
|
echo "git clone git://git.proxmox.com/git/proxmox-widget-toolkit.git\\ngit checkout ${GITVERSION}" > ${BUILDDIR}.tmp/debian/SOURCE
|
|
mv ${BUILDDIR}.tmp/ ${BUILDDIR}
|
|
|
|
.PHONY: deb
|
|
deb: ${DEBS}
|
|
${DEBS}: ${BUILDDIR}
|
|
cd ${BUILDDIR}; dpkg-buildpackage -b -us -uc
|
|
lintian ${DEBS}
|
|
|
|
.PHONY: dsc
|
|
dsc: ${DSC}
|
|
${DSC}: ${BUILDDIR}
|
|
cd ${BUILDDIR}; dpkg-buildpackage -S -us -uc -d
|
|
lintian ${DSC}
|
|
|
|
.PHONY: lint
|
|
lint: ${JSSRC}
|
|
${MAKE} -C src lint
|
|
|
|
.PHONY: upload
|
|
upload: ${DEBS}
|
|
tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg,pbs --dist bullseye
|
|
tar cf - ${DEV_DEB} | ssh -X repoman@repo.proxmox.com -- upload --product devel --dist bullseye
|
|
|
|
distclean: clean
|
|
clean:
|
|
$(MAKE) -C src clean
|
|
rm -rf ${BUILDDIR} ${BUILDDIR}.tmp *.tar.gz *.dsc *.deb *.changes *.buildinfo
|
|
find . -name '*~' -exec rm {} ';'
|
|
|
|
.PHONY: dinstall
|
|
dinstall: ${DEBS}
|
|
dpkg -i ${DEBS}
|