separate packaging and source build system

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-05-19 16:21:48 +02:00
parent f7d3e2f59e
commit 1b02346293
10 changed files with 22 additions and 14 deletions

View File

@ -16,10 +16,11 @@ all: $(DEB)
.PHONY: $(BUILDSRC)
$(BUILDSRC):
rm -rf $(BUILDSRC)
rsync -a debian $(BUILDSRC)
make DESTDIR=./$(BUILDSRC) install
echo "git clone git://git.proxmox.com/git/pve-apiclient.git\\ngit checkout $(GITVERSION)" > $(BUILDSRC)/debian/SOURCE
rm -rf $@ $@.tmp
cp -a src $@.tmp
cp -a debian $@.tmp/
echo "git clone git://git.proxmox.com/git/pve-apiclient.git\\ngit checkout $(GITVERSION)" >$@.tmp/debian/SOURCE
mv $@.tmp $@
.PHONY: deb
deb $(DEB): $(BUILDSRC)
@ -31,14 +32,6 @@ dsc: $(BUILDSRC)
cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc
lintian $(DSC)
install: PVE/APIClient/Exception.pm PVE/APIClient/LWP.pm examples/*.pl
install -D -m 0644 PVE/APIClient/LWP.pm $(PERL5DIR)/PVE/APIClient/LWP.pm
install -m 0644 PVE/APIClient/Exception.pm $(PERL5DIR)/PVE/APIClient/Exception.pm
install -d -m 755 $(DOCDIR)/examples
install -m 0755 examples/example1.pl $(DOCDIR)/examples
install -m 0755 examples/example2.pl $(DOCDIR)/examples
install -m 0755 examples/perftest1.pl $(DOCDIR)/examples
.PHONY: upload
upload: $(DEB)
tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist bullseye

2
debian/install vendored
View File

@ -1,2 +0,0 @@
/usr/share/perl5
/usr/share/doc/libpve-apiclient-perl

17
src/Makefile Normal file
View File

@ -0,0 +1,17 @@
PACKAGE ?= libpve-apiclient-perl
DESTDIR=
PERL5DIR=$(DESTDIR)/usr/share/perl5
DOCDIR=$(DESTDIR)/usr/share/doc/$(PACKAGE)
all:
install: PVE/APIClient/Exception.pm PVE/APIClient/LWP.pm examples/*.pl
install -D -m 0644 PVE/APIClient/LWP.pm $(PERL5DIR)/PVE/APIClient/LWP.pm
install -m 0644 PVE/APIClient/Exception.pm $(PERL5DIR)/PVE/APIClient/Exception.pm
install -d -m 755 $(DOCDIR)/examples
install -m 0755 examples/example1.pl $(DOCDIR)/examples
install -m 0755 examples/example2.pl $(DOCDIR)/examples
install -m 0755 examples/perftest1.pl $(DOCDIR)/examples
clean: