mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
24 lines
555 B
YAML
24 lines
555 B
YAML
|
distributable:
|
||
|
url: https://github.com/sass/libsass/archive/refs/tags/{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
versions:
|
||
|
github: sass/libsass
|
||
|
build:
|
||
|
dependencies:
|
||
|
gnu.org/autoconf: '*'
|
||
|
gnu.org/automake: '*'
|
||
|
gnu.org/libtool: '*'
|
||
|
script:
|
||
|
- autoreconf -fvi
|
||
|
- ./configure $ARGS
|
||
|
- make --jobs {{ hw.concurrency }} install
|
||
|
env:
|
||
|
ARGS:
|
||
|
- --prefix={{prefix}}
|
||
|
- --disable-silent-rules
|
||
|
- --disable-dependency-tracking
|
||
|
test:
|
||
|
script:
|
||
|
- cc test.c -lsass -o test
|
||
|
- ./test | grep 'Compilation successful'
|