mirror of
https://git.proxmox.com/git/pve-http-server
synced 2025-07-03 16:06:42 +00:00
buildsys: split packaging and source build-systems
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
ec08ad30f5
commit
f8f97c8d26
21
Makefile
21
Makefile
@ -7,41 +7,28 @@ BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
|
|||||||
|
|
||||||
DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
|
DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
|
||||||
|
|
||||||
DESTDIR=
|
|
||||||
|
|
||||||
PERL5DIR=${DESTDIR}/usr/share/perl5
|
|
||||||
DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
|
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
|
||||||
.PHONY: deb
|
.PHONY: deb
|
||||||
deb: ${DEB}
|
deb: ${DEB}
|
||||||
${DEB}:
|
${DEB}:
|
||||||
rm -rf ${BUILDDIR}
|
rm -rf ${BUILDDIR}
|
||||||
rsync -a * ${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
|
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}
|
||||||
|
|
||||||
install: PVE
|
|
||||||
install -d -m 755 ${PERL5DIR}/PVE/APIServer
|
|
||||||
install -m 0644 PVE/APIServer/AnyEvent.pm ${PERL5DIR}/PVE/APIServer
|
|
||||||
install -m 0644 PVE/APIServer/Formatter.pm ${PERL5DIR}/PVE/APIServer
|
|
||||||
install -m 0644 PVE/APIServer/Utils.pm ${PERL5DIR}/PVE/APIServer
|
|
||||||
install -d -m 755 ${PERL5DIR}/PVE/APIServer/Formatter
|
|
||||||
install -m 0644 PVE/APIServer/Formatter/Standard.pm ${PERL5DIR}/PVE/APIServer/Formatter
|
|
||||||
install -m 0644 PVE/APIServer/Formatter/Bootstrap.pm ${PERL5DIR}/PVE/APIServer/Formatter
|
|
||||||
install -m 0644 PVE/APIServer/Formatter/HTML.pm ${PERL5DIR}/PVE/APIServer/Formatter
|
|
||||||
|
|
||||||
.PHONY: upload
|
.PHONY: upload
|
||||||
upload: ${DEB}
|
upload: ${DEB}
|
||||||
tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist buster
|
tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist buster
|
||||||
|
|
||||||
.PHONY: clean distclean
|
.PHONY: clean distclean
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f examples/simple-demo.pem
|
${MAKE} -C src $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
${MAKE} -C src $@
|
||||||
rm -rf ${PACKAGE}-*/ *.deb *.changes *.buildinfo ${BTDIR} examples/simple-demo.lck
|
rm -rf ${PACKAGE}-*/ *.deb *.changes *.buildinfo ${BTDIR} examples/simple-demo.lck
|
||||||
find . -name '*~' -exec rm {} ';'
|
find . -name '*~' -exec rm {} ';'
|
||||||
|
|
||||||
|
23
src/Makefile
Normal file
23
src/Makefile
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
DESTDIR=
|
||||||
|
PERL5DIR=${DESTDIR}/usr/share/perl5
|
||||||
|
DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
|
||||||
|
|
||||||
|
all:
|
||||||
|
|
||||||
|
install: PVE
|
||||||
|
install -d -m 755 ${PERL5DIR}/PVE/APIServer
|
||||||
|
install -m 0644 PVE/APIServer/AnyEvent.pm ${PERL5DIR}/PVE/APIServer
|
||||||
|
install -m 0644 PVE/APIServer/Formatter.pm ${PERL5DIR}/PVE/APIServer
|
||||||
|
install -m 0644 PVE/APIServer/Utils.pm ${PERL5DIR}/PVE/APIServer
|
||||||
|
install -d -m 755 ${PERL5DIR}/PVE/APIServer/Formatter
|
||||||
|
install -m 0644 PVE/APIServer/Formatter/Standard.pm ${PERL5DIR}/PVE/APIServer/Formatter
|
||||||
|
install -m 0644 PVE/APIServer/Formatter/Bootstrap.pm ${PERL5DIR}/PVE/APIServer/Formatter
|
||||||
|
install -m 0644 PVE/APIServer/Formatter/HTML.pm ${PERL5DIR}/PVE/APIServer/Formatter
|
||||||
|
|
||||||
|
.PHONY: clean distclean
|
||||||
|
distclean: clean
|
||||||
|
rm -f examples/simple-demo.pem
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf examples/simple-demo.lck
|
||||||
|
find . -name '*~' -exec rm {} ';'
|
Loading…
Reference in New Issue
Block a user