blob: 42b3659c941fcb184ab9e41ee1a45a80d0fad20c (
plain)
1 # Description: libsass command line driver
2 # URL: https://sass-lang.com/libsass
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: libsass
5
6 name=sassc
7 version=3.6.2
8 release=1
9 source=(https://github.com/sass/$name/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 autoreconf -fi
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 }
|