mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
parent
24c2a031ac
commit
339412ad00
1 changed files with 15 additions and 3 deletions
|
@ -5,21 +5,33 @@ versions:
|
||||||
github: knik0/faad2
|
github: knik0/faad2
|
||||||
build:
|
build:
|
||||||
dependencies:
|
dependencies:
|
||||||
|
cmake.org: '*'
|
||||||
gnu.org/autoconf: '*'
|
gnu.org/autoconf: '*'
|
||||||
gnu.org/automake: '*'
|
gnu.org/automake: '*'
|
||||||
gnu.org/libtool: '*'
|
gnu.org/libtool: '*'
|
||||||
linux:
|
linux:
|
||||||
gnu.org/gcc: '*'
|
gnu.org/gcc: '*'
|
||||||
script:
|
script:
|
||||||
- ./bootstrap
|
- run: |
|
||||||
- ./configure $CONFIGURE_ARGS
|
./bootstrap
|
||||||
- make --jobs {{ hw.concurrency }} install
|
./configure $CONFIGURE_ARGS
|
||||||
|
make --jobs {{ hw.concurrency }} install
|
||||||
|
if: <2.11
|
||||||
|
- run: |
|
||||||
|
cmake .. $CMAKE_ARGS
|
||||||
|
cmake --build .
|
||||||
|
cmake --install .
|
||||||
|
working-directory: build
|
||||||
|
if: '>=2.11'
|
||||||
env:
|
env:
|
||||||
CONFIGURE_ARGS:
|
CONFIGURE_ARGS:
|
||||||
- --disable-debug
|
- --disable-debug
|
||||||
- --disable-dependency-tracking
|
- --disable-dependency-tracking
|
||||||
- --prefix="{{prefix}}"
|
- --prefix="{{prefix}}"
|
||||||
- --libdir="{{prefix}}/lib"
|
- --libdir="{{prefix}}/lib"
|
||||||
|
CMAKE_ARGS:
|
||||||
|
- -DCMAKE_INSTALL_PREFIX="{{prefix}}"
|
||||||
|
|
||||||
provides:
|
provides:
|
||||||
- bin/faad
|
- bin/faad
|
||||||
test:
|
test:
|
||||||
|
|
Loading…
Reference in a new issue