This repository has been archived by the owner on Feb 22, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
43eb315
commit acebd64
Showing
5 changed files
with
122 additions
and
15 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
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 |
---|---|---|
@@ -1 +1,52 @@ | ||
# {{projectname}} | ||
# {{projectname}} | ||
|
||
Adds your awesome app description here! | ||
|
||
(maybe adds a screenshot, people loves screenshots!) | ||
|
||
## Get it from the elementary OS AppCenter! | ||
|
||
[![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/{{projectname}}) | ||
|
||
This app is available on the elementary OS AppCenter. | ||
|
||
# Install it from source | ||
|
||
You can of course download and install this app from source. | ||
|
||
## Dependencies | ||
|
||
Ensure you have these dependencies installed | ||
|
||
* granite | ||
* gtk+-3.0 | ||
* switchboard-2.0 | ||
|
||
## Install, build and run | ||
|
||
```bash | ||
# install elementary-sdk, meson and ninja | ||
sudo apt install elementary-sdk meson ninja | ||
# clone repository | ||
git clone {{repository_url}} {{projectname}} | ||
# cd to dir | ||
cd {{projectname}} | ||
# run meson | ||
meson build --prefix=/usr | ||
# cd to build, build and test | ||
cd build | ||
sudo ninja install && {{projectname}} | ||
``` | ||
|
||
## Generating pot file | ||
|
||
```bash | ||
# after setting up meson build | ||
cd build | ||
|
||
# generates pot file | ||
sudo ninja {{projectname}}-pot | ||
|
||
# to regenerate and propagate changes to every po file | ||
sudo ninja {{projectname}}-update-po | ||
``` |
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 |
---|---|---|
@@ -1,20 +1,32 @@ | ||
# {{projectname}} | ||
|
||
## Building and Installation | ||
## Install, build and run | ||
|
||
You'll need the following dependencies: | ||
```bash | ||
# install elementary-sdk, meson and libswitchboard | ||
sudo apt install elementary-sdk meson libswitchboard-2.0-dev | ||
# clone repository | ||
git clone {{repourl}} {{projectname}} | ||
# cd to dir | ||
cd {{projectname}} | ||
# run meson | ||
meson build --prefix=/usr | ||
# cd to build, build and test | ||
cd build | ||
sudo ninja install | ||
# restart switchboard to load your widget into switchboard | ||
pkill switchboard -9 | ||
``` | ||
|
||
* libswitchboard-2.0-dev | ||
* libgranite-dev | ||
* meson | ||
* valac | ||
## Generating pot file | ||
|
||
Run `meson` to configure the build environment and then `ninja` to build | ||
```bash | ||
# after setting up meson build | ||
cd build | ||
|
||
meson build --prefix=/usr | ||
cd build | ||
ninja | ||
# generates pot file | ||
sudo ninja {{projectname}}-pot | ||
|
||
To install, use `ninja install` | ||
|
||
sudo ninja install | ||
# to regenerate and propagate changes to every po file | ||
sudo ninja {{projectname}}-update-po | ||
``` |
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 |
---|---|---|
@@ -1 +1,32 @@ | ||
# {{projectname}} wingpanel indicator | ||
# {{projectname}} wingpanel indicator | ||
|
||
## Install, build and run | ||
|
||
```bash | ||
# install elementary-sdk, meson and libwingpanel | ||
sudo apt install elementary-sdk meson libwingpanel-2.0-dev | ||
# clone repository | ||
git clone {{repourl}} {{projectname}} | ||
# cd to dir | ||
cd {{projectname}} | ||
# run meson | ||
meson build --prefix=/usr | ||
# cd to build, build and test | ||
cd build | ||
sudo ninja install | ||
# restart switchboard to load your indicator | ||
pkill wingpanel -9 | ||
``` | ||
|
||
## Generating pot file | ||
|
||
```bash | ||
# after setting up meson build | ||
cd build | ||
|
||
# generates pot file | ||
sudo ninja {{projectname}}-pot | ||
|
||
# to regenerate and propagate changes to every po file | ||
sudo ninja {{projectname}}-update-po | ||
``` |
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
com.github.alcadica.develop (0.6) precise; urgency=low | ||
|
||
* Fills generated README.md files with installing and compiling instructions | ||
|
||
-- Paolo Roth <[email protected]> Tue, 23 Jun 2018 03:00:00 -0500 | ||
|
||
com.github.alcadica.develop (0.5) precise; urgency=low | ||
|
||
* Adds a small disclaimer about user data consumption (they are not saved on a server) | ||
|