-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# rc_gui | ||
|
||
GUI for configuring Raspberry Pi settings. | ||
(Including Raspberry Pi Desktop for PC/Mac). | ||
|
||
Uses the command-line equivalent, [`raspi-config`](https://github.com/RPi-Distro/raspi-config), internally for some operations. | ||
|
||
## Building | ||
|
||
Install pre-requisites: | ||
|
||
```bash | ||
sudo apt update | ||
sudo apt install autoconf libglib2.0-dev autogen libtool intltool libgtk2.0-dev | ||
``` | ||
|
||
Configure and build: | ||
|
||
```bash | ||
./autogen.sh | ||
./configure | ||
make | ||
``` | ||
|
||
Install data files: | ||
|
||
```bash | ||
sudo make install | ||
``` |
3df5a22
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Installing pre-requisites is far better done via "sudo apt build-dep " than by listing individual packages, which is why I don't list pre-requisites in READMEs...