2020-08-28 16:04:37 +00:00
|
|
|
Buypeeb
|
|
|
|
===
|
|
|
|
|
|
|
|
i figured, may as well try and learn c#
|
|
|
|
|
|
|
|
0uo
|
|
|
|
|
|
|
|
## installing
|
|
|
|
you need [mono](https://www.mono-project.com/download/stable/) and [gtk sharp 3](https://github.com/GtkSharp/GtkSharp/)
|
|
|
|
|
|
|
|
### installing on debian
|
|
|
|
the packages you'll need are `mono-devel` and `gtk-sharp3`, so:
|
|
|
|
```
|
|
|
|
sudo apt install mono-devel gtk-sharp3
|
|
|
|
```
|
|
|
|
|
2020-08-31 13:58:27 +00:00
|
|
|
### installing on arch
|
|
|
|
```
|
|
|
|
sudo pacman -S mono gtk-sharp-3
|
|
|
|
```
|
|
|
|
|
2020-08-28 16:04:37 +00:00
|
|
|
## compiling
|
|
|
|
```
|
|
|
|
mcs -pkg:gtk-sharp-3.0 -resource:ui.glade *.cs
|
|
|
|
```
|
|
|
|
|
|
|
|
## running
|
|
|
|
```
|
|
|
|
./BuypeebApp.exe
|
2020-08-31 13:56:32 +00:00
|
|
|
```
|
|
|
|
or
|
|
|
|
```
|
|
|
|
mono ./BuypeebApp.exe
|
|
|
|
```
|