Add lazypkg files
This commit is contained in:
parent
06b02baf5c
commit
3c593ca316
3
install/build.sh
Executable file
3
install/build.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
make plugins-reset
|
5
install/post_install.sh
Executable file
5
install/post_install.sh
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
systemctl daemon-reload
|
||||
systemctl enable onionr
|
||||
systemctl start onionr
|
3
install/pre_install.sh
Executable file
3
install/pre_install.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
pip3 install --no-input -r "$OUTPUT_DIR/requirements.txt" --require-hashes > /dev/null
|
54
onionr.yml
Normal file
54
onionr.yml
Normal file
@ -0,0 +1,54 @@
|
||||
name: onionr
|
||||
version: 0.1
|
||||
release: 1
|
||||
summary: anonymous P2P communication platform
|
||||
description: Onionr is a decentralized, peer-to-peer communication network, designed
|
||||
to be anonymous and resistant to (meta)data analysis, spam, and corruption.
|
||||
license: GPL
|
||||
website: https://onionr.net/
|
||||
contact: contact@onionr.net
|
||||
maintainer: Kevin Froman
|
||||
|
||||
relationships:
|
||||
- conflicts: onionr2
|
||||
|
||||
sources:
|
||||
- git: https://gitlab.com/beardog/onionr.git
|
||||
branch: master
|
||||
|
||||
dependencies:
|
||||
- deb: git
|
||||
required: true
|
||||
- deb: curl
|
||||
required: true
|
||||
- deb: tor
|
||||
required: true
|
||||
- deb: python3.7
|
||||
pkgbuild: python
|
||||
build: true
|
||||
required: true
|
||||
- deb: python3-setuptools
|
||||
pkgbuild: python-setuptools
|
||||
build: true
|
||||
required: true
|
||||
- deb: python3-pip
|
||||
pkgbuild: python-pip
|
||||
build: true
|
||||
required: true
|
||||
|
||||
movements:
|
||||
- install/onionr: /usr/bin/
|
||||
chown: root:root
|
||||
chmod: 755
|
||||
- install/onionr.service: /etc/systemd/system/
|
||||
chown: root:root
|
||||
chmod: 644
|
||||
- '.': /usr/share/onionr
|
||||
chown: root:root
|
||||
chmod: 755
|
||||
|
||||
scripts:
|
||||
- build: install/build.sh
|
||||
- pre_install: install/pre_install.sh
|
||||
- post_install: install/post_install.sh
|
||||
|
Loading…
Reference in New Issue
Block a user