mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
sass-lang.com/sassc (#4130)
* new file: projects/sass-lang.com/sassc/package.yml new file: projects/sass-lang.com/sassc/test.scss * libsass ver
This commit is contained in:
parent
480a147bf7
commit
062ae13b44
2 changed files with 31 additions and 0 deletions
26
projects/sass-lang.com/sassc/package.yml
Normal file
26
projects/sass-lang.com/sassc/package.yml
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
distributable:
|
||||||
|
url: https://github.com/sass/sassc/archive/refs/tags/{{version}}.tar.gz
|
||||||
|
strip-components: 1
|
||||||
|
versions:
|
||||||
|
github: sass/sassc
|
||||||
|
dependencies:
|
||||||
|
sass-lang.com/libsass: ^3.6.5
|
||||||
|
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
|
||||||
|
provides:
|
||||||
|
- bin/sassc
|
||||||
|
test:
|
||||||
|
script:
|
||||||
|
- sassc --style compressed test.scss | grep 'div img{border:0px}'
|
5
projects/sass-lang.com/sassc/test.scss
Normal file
5
projects/sass-lang.com/sassc/test.scss
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
div {
|
||||||
|
img {
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue