Package Details: libsass 3.2.4-1

Package Base: libsass
Description: C implementation of Sass CSS preprocessor (library).
Upstream URL: http://libsass.org/
Category: devel
Licenses: MIT
Submitter: idupree
Maintainer: idupree
Last Packager: idupree
Votes: 15
First Submitted: 2014-01-08 05:47
Last Updated: 2015-05-28 22:21

Latest Comments

Comment by idupree

2015-07-08 13:22

Already done! :D. 3.2.5 on AUR 4 https://aur4.archlinux.org/packages/libsass/ , same for sassc, and I like the new git based upload process!

Comment by blaenk

2015-07-08 04:24

Also please update to 3.2.5 when you do that.

Comment by idupree

2015-06-06 00:25

@djmattyg007: Thanks! I'll make that update to libsass and sassc when I upload to aur4, which is supposedly going to be available a few days from now.

Comment by djmattyg007

2015-06-05 23:35

libsass is now at https://github.com/sass/libsass. The source URL should be updated to avoid the unnecessary redirect.

Comment by kanja

2015-01-10 20:27

Here's an updated pkgbuild


# Maintainer: Isaac Dupree <antispam@idupree.com>
pkgname=libsass
pkgver=3.1.0
pkgrel=1
pkgdesc="C implementation of Sass CSS preprocessor (library)."
arch=('i686' 'x86_64')
url="http://libsass.org/"
license=('MIT')
source=(https://github.com/sass/${pkgname}/archive/${pkgver}.tar.gz)
md5sums=('959efd3b20aebe50eb555a1819620736')

build() {
cd "$srcdir/$pkgname-$pkgver"

autoreconf -i
./configure --prefix=/usr
make
}

package() {
cd "$srcdir/$pkgname-$pkgver"

make DESTDIR="$pkgdir/" install
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}