Ver a proveniência

Configure installation

pull/1/head
Dejvino há 4 anos
ascendente
cometimento
3cbf9cf23f
2 ficheiros alterados com 11 adições e 3 eliminações
  1. +9
    -2
      README.md
  2. +2
    -1
      meson.build

+ 9
- 2
README.md Ver ficheiro

@@ -1,13 +1,20 @@
# PinePhone Toolkit
# PinePhone Toolkit (PPTK)
A collection of tools and utility apps for the PINE64 PinePhone.

## Components
### backlight
Get / Set backlight brightness.

## Building
```
$ pptk-backlight get
4
$ pptk-backlight set 6
```

## Build & Install
```
$ meson build
$ cd build
$ ninja
$ sudo ninja install
```

+ 2
- 1
meson.build Ver ficheiro

@@ -1,2 +1,3 @@
project('PinePhone Toolkit', 'c')
executable('pptk-backlight', ['src/backlight.c'])
executable('pptk-backlight', ['src/backlight.c'],
install: true, install_mode: ['rwsr-xr-x', 0, 0])

Carregando…
Cancelar
Guardar