From 80a58eea7b090b3d47597e50891441fcccd4c927 Mon Sep 17 00:00:00 2001 From: Leo Arias Date: Tue, 25 Apr 2017 08:20:57 -0600 Subject: [PATCH] Add the packaging metadata to build the parity snap (#5496) * Add the packaging metadata to build the parity snap * Move the snapcraft.yaml to scripts --- scripts/snapcraft.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 scripts/snapcraft.yaml diff --git a/scripts/snapcraft.yaml b/scripts/snapcraft.yaml new file mode 100644 index 000000000..bd71df3de --- /dev/null +++ b/scripts/snapcraft.yaml @@ -0,0 +1,22 @@ +name: parity +version: master +summary: Fast, light, robust Ethereum implementation +description: | + Parity's goal is to be the fastest, lightest, and most secure Ethereum + client. We are developing Parity using the sophisticated and cutting-edge + Rust programming language. Parity is licensed under the GPLv3, and can be + used for all your Ethereum needs. + +grade: devel +confinement: strict + +apps: + parity: + command: parity + plugs: [network, network-bind] + +parts: + parity: + source: .. + plugin: rust + build-packages: [g++, libudev-dev, libssl-dev, make, pkg-config] \ No newline at end of file