Skip to content

Commit

Permalink
Improve README
Browse files Browse the repository at this point in the history
  • Loading branch information
andrum993 committed Sep 2, 2020
1 parent 53925a3 commit 3df5a22
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 4 deletions.
4 changes: 0 additions & 4 deletions README

This file was deleted.

29 changes: 29 additions & 0 deletions README.md
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
```

1 comment on commit 3df5a22

@spl237
Copy link
Contributor

@spl237 spl237 commented on 3df5a22 Sep 2, 2020

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...

Please sign in to comment.