mirror of
git://git.proxmox.com/git/pve-apiclient.git
synced 2025-03-11 00:58:27 +03:00
separate packaging and source build system
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
f7d3e2f59e
commit
1b02346293
17
Makefile
17
Makefile
@ -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
2
debian/install
vendored
@ -1,2 +0,0 @@
|
||||
/usr/share/perl5
|
||||
/usr/share/doc/libpve-apiclient-perl
|
17
src/Makefile
Normal file
17
src/Makefile
Normal 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:
|
Loading…
x
Reference in New Issue
Block a user