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