mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
29 lines
486 B
YAML
29 lines
486 B
YAML
image: freebsd/latest
|
|
packages:
|
|
- libev
|
|
- libXext
|
|
- libxcb
|
|
- meson
|
|
- pkgconf
|
|
- cmake
|
|
- xcb-util-renderutil
|
|
- xcb-util-image
|
|
- pixman
|
|
- uthash
|
|
- libconfig
|
|
- libglvnd
|
|
- libepoxy
|
|
- dbus
|
|
- pcre
|
|
sources:
|
|
- https://github.com/yshui/picom
|
|
tasks:
|
|
- setup: |
|
|
cd picom
|
|
CPPFLAGS="-I/usr/local/include" meson setup -Dunittest=true --werror build
|
|
- build: |
|
|
cd picom
|
|
ninja -C build
|
|
- unittest: |
|
|
cd picom
|
|
ninja -C build test
|