forked from verticalcoin/verticalcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snapcraft.yaml
49 lines (43 loc) · 1.07 KB
/
snapcraft.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: vnode
version: "0.0.1"
summary: Vnode for Verticalcoin project
description: |
Vnodes verify transaction and are used as second layer on top of the normal nodes.
Vnodes must have access to 3750 VTL at a specific address to play the role of Vnode otherwise they are just degraded to a regular node on the network.
confinement: strict
grade: stable
apps:
cli:
command: bin/verticalcoin-cli
plugs:
- network
- home
daemon:
command: bin/verticalcoind
plugs:
- network
- network-bind
parts:
berkeley:
plugin: nil
prepare: |
apt-get install software-properties-common -y
add-apt-repository -y ppa:bitcoin/bitcoin
apt-get update
apt-get install libdb4.8-dev libdb4.8++-dev -y
libboost:
after: [openssl]
plugin: nil
prepare: |
apt-get install libboost-all-dev -y
openssl:
after: [berkeley]
plugin: nil
prepare: |
apt-get install openssl libssl-dev libevent-dev -y
cli:
after: [libboost]
plugin: autotools
configflags: [--without-gui]
source: https://github.com/verticalcoin/verticalcoin.git
source-branch: master