Files
nym/ppa/packages/Makefile
T
Jon Häggblad dd70192508 Create nym-repo-setup debian package and nym-vpn meta package (#4837)
* Create nym-repo-setup

* update

* Add postrm

* Add README

* Add Makefile

* Move to subdir

* Bundle the list file instead

* Create nym-vpn metapackage

* Rename top-level dir

* Set version of meta package to 0.1

* Add dpkg-name

* Create workflow for creating the debs

* Restrict to amd64 only

* Rename to build-deb-meta.yml

* name to upload-artifact

* Set names

* typo

* Extend version and set amd64 only

* Bump to 1.0.1
2024-09-09 11:21:57 +02:00

23 lines
338 B
Makefile

all: deb
REPO_DEB=nym-repo-setup.deb
REPO_SRC=nym-repo-setup
META_DEB=nym-vpn.deb
META_SRC=nym-vpn
ALL_DEB=$(REPO_DEB) $(META_DEB)
deb: $(ALL_DEB)
$(REPO_DEB):
dpkg-deb --build $(REPO_SRC) $(REPO_DEB)
dpkg-name -o $(REPO_DEB)
$(META_DEB):
dpkg-deb --build $(META_SRC) $(META_DEB)
dpkg-name -o $(META_DEB)
clean:
rm $(ALL_DEB)