18 lines
375 B
Plaintext
18 lines
375 B
Plaintext
# Description: libsass command line driver
|
|
# URL: https://sass-lang.com/libsass
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: libsass
|
|
|
|
name=sassc
|
|
version=3.6.2
|
|
release=1
|
|
source=(https://github.com/sass/$name/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
autoreconf -fi
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|