mirror of
https://github.com/yshui/picom.git
synced 2024-11-03 04:33:49 -05:00
23 lines
403 B
YAML
23 lines
403 B
YAML
image: openbsd/latest
|
|
packages:
|
|
- libev
|
|
- xcb
|
|
- meson
|
|
- pkgconf
|
|
- cmake
|
|
- uthash
|
|
- libconfig
|
|
- dbus
|
|
- pcre
|
|
sources:
|
|
- https://github.com/yshui/picom
|
|
tasks:
|
|
- setup: |
|
|
cd picom
|
|
CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib" meson -Dunittest=true build
|
|
- build: |
|
|
cd picom
|
|
ninja -C build
|
|
- unittest: |
|
|
cd picom
|
|
ninja -C build test
|