mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
939e4b36ac
* new file: projects/dkrz.de/libaec/fixture.cpp new file: projects/dkrz.de/libaec/package.yml * shouldn't need `-L` --------- Co-authored-by: Jacob Heider <jacob@tea.xyz>
28 lines
521 B
YAML
28 lines
521 B
YAML
distributable:
|
|
url: https://github.com/MathisRosenhauer/libaec/releases/download/v{{version}}/libaec-{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: MathisRosenhauer/libaec
|
|
strip: /^v/
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
script: |
|
|
./configure $ARGS
|
|
make --jobs {{ hw.concurrency }} install
|
|
env:
|
|
ARGS:
|
|
- --prefix="{{prefix}}"
|
|
|
|
provides:
|
|
- bin/aec
|
|
|
|
test:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
script: |
|
|
cc -o testlibaec fixture.cpp -laec
|