diff options
author | Andy Postnikov <apostnikov@gmail.com> | 2019-05-21 20:33:21 +0300 |
---|---|---|
committer | TBK <tbk@jjtc.eu> | 2019-05-22 16:44:06 +0200 |
commit | bfb49ba18c10d0effa72c07fb9ee62635a28a015 (patch) | |
tree | 45d28d9fc2918ed123889cbbb254735b6359b9bf | |
parent | 13fffb8a702ca37f2c49ebe5d970716bbe6ec31f (diff) | |
download | aports-bfb49ba18c10d0effa72c07fb9ee62635a28a015.tar.bz2 aports-bfb49ba18c10d0effa72c07fb9ee62635a28a015.tar.xz |
community/libsass: upgrade to 3.6.0 and clean-up
Closes: GH-7985
-rw-r--r-- | community/libsass/APKBUILD | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/community/libsass/APKBUILD b/community/libsass/APKBUILD index d6802ca267..c1de45eb6a 100644 --- a/community/libsass/APKBUILD +++ b/community/libsass/APKBUILD @@ -1,16 +1,15 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> # Contributor: Thomas Boerger <thomas@webhippie.de> pkgname=libsass -pkgver=3.5.5 +pkgver=3.6.0 pkgrel=0 pkgdesc="C/C++ implementation of a Sass compiler" -url="http://libsass.org" +url="https://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" +source="$pkgname-$pkgver.tar.gz::https://github.com/sass/libsass/archive/$pkgver.tar.gz" prepare() { default_prepare @@ -18,7 +17,6 @@ prepare() { } build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -28,10 +26,8 @@ build() { } package() { - cd "$builddir" - make install DESTDIR="$pkgdir" rm -f "$pkgdir"/usr/lib/*.la } -sha512sums="dcb73a5080c00023b60a19ea037ba5af481253a7b47492bd7114bf45ab78ed931c7b207fa8f12ed200a39760553d72ae92dbe4eb80b826b59a6201fb34008fe5 libsass-3.5.5.tar.gz" +sha512sums="9665e50ee964ca3cc323f26c2b8322677102d26a7a102558ffbc5bef7a4c4ea44ca5096a967e4044dac1404bfa343a37d846f22d1e1adc27592023d5d4ac40c8 libsass-3.6.0.tar.gz" |