Skip to content

Commit 607dec1

Browse files
authored
Add link to Barry's script to README. (#819)
* Add link to Barry's script to README. * Wording update. * Remove git hash from version string. * s/devel2/dev2/
1 parent d6577a1 commit 607dec1

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ endif(APPLE)
4949
# Adds a tag to the end of the version string. Leave empty
5050
# for official release builds.
5151
if(NOT DEFINED FREEDV_VERSION_TAG)
52-
set(FREEDV_VERSION_TAG "devel")
52+
set(FREEDV_VERSION_TAG "dev2")
5353
add_definitions(-DUNOFFICIAL_RELEASE)
5454
endif(NOT DEFINED FREEDV_VERSION_TAG)
5555

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,11 @@ Linux by following these steps:
102102
(rade-venv) $ PYTHONPATH="$(pwd)/rade_src:$PYTHONPATH" src/freedv
103103
```
104104

105+
Alternatively, you can use [this script](https://github.com/barjac/freedv-rade-build) developed by
106+
Barry Jackson G4MKT to automate the above steps. While the FreeDV project thanks him for his contribution
107+
to helping Linux users more easily get on the air with FreeDV, the FreeDV development team will not provide
108+
support. All support inquiries regarding this script should be directed to the linked repo.
109+
105110
## Building without LPCNet
106111

107112
In preparation for possible future deprecation of FreeDV 2020 and 2020B modes, it is

cmake/version.h.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
#define FREEDV_VERSION_SUFFIX @FreeDV_VERSION_TWEAK@
88

99
#if defined(FREEDV_VERSION_TAG)
10-
#define FREEDV_VERSION ("@FreeDV_VERSION@-" FREEDV_VERSION_TAG "-" GIT_HASH)
10+
//#define FREEDV_VERSION ("@FreeDV_VERSION@-" FREEDV_VERSION_TAG "-" GIT_HASH)
11+
#define FREEDV_VERSION ("@FreeDV_VERSION@-" FREEDV_VERSION_TAG)
1112
#else
1213
#define FREEDV_VERSION ("@FreeDV_VERSION@")
1314
#endif // defined(FREEDV_VERSION_TAG)

0 commit comments

Comments
 (0)