mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
38 lines
843 B
Plaintext
38 lines
843 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Contributor: Thomas Boerger <thomas@webhippie.de>
|
|
pkgname=libsass
|
|
pkgver=3.5.5
|
|
pkgrel=0
|
|
pkgdesc="C/C++ implementation of a Sass compiler"
|
|
url="http://libsass.org"
|
|
arch="all"
|
|
license="MIT"
|
|
depends=""
|
|
makedepends="autoconf automake libtool"
|
|
subpackages="$pkgname-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
autoreconf -vif
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
|
|
make install DESTDIR="$pkgdir"
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
sha512sums="dcb73a5080c00023b60a19ea037ba5af481253a7b47492bd7114bf45ab78ed931c7b207fa8f12ed200a39760553d72ae92dbe4eb80b826b59a6201fb34008fe5 libsass-3.5.5.tar.gz"
|