# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Jerome Leclanche <jerome@leclan.ch>
# Contributor: Isaac Dupree <antispam@idupree.com>
pkgname=sassc
pkgver=3.6.2
pkgrel=4
pkgdesc='C implementation of Sass CSS preprocessor'
arch=(armv7h 'aarch64')
url='https://sass-lang.com'
license=(MIT)
depends=(libsass)
_archive="$pkgname-$pkgver"
source=("https://github.com/sass/$pkgname/archive/$pkgver/$_archive.tar.gz")
sha256sums=('608dc9002b45a91d11ed59e352469ecc05e4f58fc1259fc9a9f5b8f0f8348a03')
build() {
cd "$_archive"
autoreconf -i
./configure --prefix=/usr
make
}
package() {
cd "$_archive"
make DESTDIR="$pkgdir/" install
install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
}