Update BUILD-INSTRUCTIONS-LINUX.md

Added GNU barcode example to Linux build instructions.
This commit is contained in:
Jim Evins
2019-07-19 00:04:12 -04:00
committed by GitHub
parent e1117d3359
commit f03aa0db3d
+13 -1
View File
@@ -38,13 +38,25 @@ _QREncode (Optional)_
sudo apt install pkgconf libqrencode-dev sudo apt install pkgconf libqrencode-dev
``` ```
_Zint (Optional)_ _Zint (Optional)_
Install zint from source:
``` ```
wget https://downloads.sourceforge.net/project/zint/zint/2.6.3/zint-2.6.3_final.tar.gz wget https://downloads.sourceforge.net/project/zint/zint/2.6.3/zint-2.6.3_final.tar.gz
tar xzf zint-2.6.3_final.tar.gz tar xzf zint-2.6.3_final.tar.gz
cd zint-2.6.3.src cd zint-2.6.3.src/
mkdir build && cd build && cmake .. && make mkdir build && cd build && cmake .. && make
sudo make install sudo make install
``` ```
_GNU Barcode (Optional)_
As of version 0.99, GNU Barcode no longer installs its library. So install 0.98 from source:
```
wget https://ftp.gnu.org/gnu/barcode/barcode-0.98.tar.gz
tar xzf barcode-0.98.tar.gz
cd barcode-0.98/
./configure && make
sudo make install
```
### Compile and Install gLabels ### Compile and Install gLabels
``` ```