You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
491 B
24 lines
491 B
2 years ago
|
image: ubuntu/next # latest xx.10
|
||
|
packages:
|
||
|
- libsndfile1-dev
|
||
|
- ninja-build
|
||
|
- libchromaprint-dev
|
||
|
- libsamplerate0-dev
|
||
|
- python3
|
||
|
sources:
|
||
|
- https://git.sr.ht/~alextee/libaudec
|
||
|
- https://github.com/mesonbuild/meson
|
||
|
tasks:
|
||
|
- setup: |
|
||
|
cd libaudec
|
||
|
../meson/meson.py build -Dtests=true
|
||
|
- build: |
|
||
|
cd libaudec
|
||
|
ninja -C build
|
||
|
- test: |
|
||
|
cd libaudec
|
||
|
ninja -C build test
|
||
|
- install: |
|
||
|
cd libaudec
|
||
|
DESTDIR=/tmp ninja -C build install
|