30 lines
809 B
Bash
30 lines
809 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# 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=5.1
|
|
pkgdesc='C implementation of Sass CSS preprocessor'
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
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
|
|
}
|