mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
36 lines
795 B
YAML
36 lines
795 B
YAML
distributable:
|
|
url: https://files.dyne.org/frei0r/releases/frei0r-plugins-{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
url: https://files.dyne.org/frei0r/releases/
|
|
match: /frei0r-plugins-\d+\.\d+(\.\d+)?\.tar\.gz/
|
|
strip:
|
|
- /^frei0r-plugins-/
|
|
- /\.tar\.gz$/
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
cmake.org: '*'
|
|
script: |
|
|
# Disable opportunistic linking against Cairo
|
|
sed -i.bak -e "s/find_package (Cairo)//" CMakeLists.txt
|
|
rm CMakeLists.txt.bak
|
|
cmake . $ARGS
|
|
make install
|
|
env:
|
|
ARGS:
|
|
- -DCMAKE_INSTALL_PREFIX="{{prefix}}"
|
|
- -DCMAKE_BUILD_TYPE=Release
|
|
- -DWITHOUT_OPENCV=ON
|
|
- -DWITHOUT_GAVL=ON
|
|
|
|
test:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
script: |
|
|
cc test.c -o test
|
|
./test
|