forked from vtwireless/cornet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprefixes.in
More file actions
43 lines (31 loc) · 1.21 KB
/
prefixes.in
File metadata and controls
43 lines (31 loc) · 1.21 KB
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
# This is a sourced bash file
# Installation prefixes and git tag releases
# These values may be over ridden in ./prefixes
#
# Just copy this file to ./prefixes and then change the values to what you
# like.
#
# You need to check the github.com repos for what tags are available
# if you wish to change to a different release. You may see a list of
# git tags in the corresponding download (dl) file in */*.tar.gz.dl
root=@root@
# Download, build, and install all these packages.
# The GitHub URLs are gotten in the files */*.tar.gz.dl also there
# are sha512 hashes that are checked for the downloaded tarball files.
# There will be a different sha512 hash for a given git tag tarball.
#
# The files in the subdirectories depend on these bash variables, and will
# source this file to get these values. Use the file ./prefix to make
# edits that override any of these values.
#
# If you change any tags you'll need to test that all your tags have
# compatible versions of the packages.
GNURADIO_TAG=v3.7.12.0
GNURADIO_PREFIX=$root/gnuradio-$GNURADIO_TAG
#NODE_TAG=v10.3.0 # try a newer tag
NODE_TAG=v11.5.0
NODE_PREFIX=$root/node-$NODE_TAG
#UHD_TAG=v3.13.0.1
UHD_TAG=v3.14.0.0
UHD_PREFIX=$root/uhd-$UHD_TAG
unset root