mirror of
https://github.com/rricharz/Tek4010.git
synced 2026-05-09 17:06:39 +00:00
78 lines
931 B
Markdown
78 lines
931 B
Markdown
# Tek4010 on macOS
|
|
|
|
This page describes installation on macOS.
|
|
|
|
---
|
|
|
|
## Quick installation
|
|
|
|
Open a terminal and install command line tools:
|
|
|
|
```
|
|
xcode-select --install
|
|
```
|
|
|
|
Install Homebrew from:
|
|
|
|
https://brew.sh
|
|
|
|
Install required packages:
|
|
|
|
```
|
|
brew install gtk+3 cairo pkg-config git
|
|
```
|
|
|
|
Download the source code:
|
|
|
|
```
|
|
git clone https://github.com/rricharz/Tek4010
|
|
cd Tek4010
|
|
```
|
|
|
|
Build and install:
|
|
|
|
```
|
|
make clean
|
|
make
|
|
make install
|
|
```
|
|
|
|
---
|
|
|
|
## First test
|
|
|
|
Run:
|
|
|
|
```
|
|
make check
|
|
```
|
|
|
|
This runs a demonstration and verifies that tek4010 works.
|
|
|
|
---
|
|
|
|
## Notes
|
|
|
|
### Running tek4010
|
|
|
|
See the quick start guide:
|
|
|
|
- [docs/quickstart.md](quickstart.md)
|
|
|
|
---
|
|
|
|
## For experienced users
|
|
|
|
- The program is built using make
|
|
- make install installs the binary in a user-local location
|
|
|
|
Manual build steps:
|
|
|
|
```
|
|
make clean
|
|
make
|
|
make install
|
|
```
|
|
|
|
If the system changes in the future, adapt package
|
|
installation and build commands as required. |