Meson is on track to replace autotools as the build system of choice, so support it in addition to autotools. Fixes https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/31
10 lines
114 B
Bash
Executable File
10 lines
114 B
Bash
Executable File
#!/bin/sh
|
|
|
|
INPUT=$1
|
|
OUTPUT=$2
|
|
|
|
if [ `which sassc` ]
|
|
then
|
|
sassc -a $INPUT | tee ${INPUT%%.scss}.css > $OUTPUT
|
|
fi
|