diff options
author | Matt Housh <jaeger@crux.ninja> | 2019-06-13 17:25:51 -0500 |
---|---|---|
committer | Matt Housh <jaeger@crux.ninja> | 2019-06-13 17:25:51 -0500 |
commit | 2880a3868dcfb0ce48e8ffd6e4611896a0f1dc77 (patch) | |
tree | eea2a79527a6398b9d16fb58a546650785c1f651 /libsass | |
parent | e631068a7f8ee1fbc490a2b7d2cc7ae31709daba (diff) | |
download | contrib-2880a3868dcfb0ce48e8ffd6e4611896a0f1dc77.tar.gz contrib-2880a3868dcfb0ce48e8ffd6e4611896a0f1dc77.tar.xz |
libsass: initial import, version 3.6.0
Diffstat (limited to 'libsass')
-rw-r--r-- | libsass/.footprint | 18 | ||||
-rw-r--r-- | libsass/.signature | 5 | ||||
-rw-r--r-- | libsass/Pkgfile | 16 |
3 files changed, 39 insertions, 0 deletions
diff --git a/libsass/.footprint b/libsass/.footprint new file mode 100644 index 000000000..2f72c9d97 --- /dev/null +++ b/libsass/.footprint @@ -0,0 +1,18 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/sass.h +drwxr-xr-x root/root usr/include/sass/ +-rw-r--r-- root/root usr/include/sass/base.h +-rw-r--r-- root/root usr/include/sass/context.h +-rw-r--r-- root/root usr/include/sass/functions.h +-rw-r--r-- root/root usr/include/sass/values.h +-rw-r--r-- root/root usr/include/sass/version.h +-rw-r--r-- root/root usr/include/sass2scss.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libsass.a +-rwxr-xr-x root/root usr/lib/libsass.la +lrwxrwxrwx root/root usr/lib/libsass.so -> libsass.so.1.0.0 +lrwxrwxrwx root/root usr/lib/libsass.so.1 -> libsass.so.1.0.0 +-rwxr-xr-x root/root usr/lib/libsass.so.1.0.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libsass.pc diff --git a/libsass/.signature b/libsass/.signature new file mode 100644 index 000000000..4f1b9f5ac --- /dev/null +++ b/libsass/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF37cAyDiRwqJtWNxwMoBM5ugFf+Dc05hDtxGoNvvDMea1YI6OygXmd2OF/Tn44fCz82w0Nmm5dqyaVlI0R3d4IQQ= +SHA256 (Pkgfile) = 41dedd954d61c9ea0c793a0af9c6e34a0caf9c21b0c101a8e682de7c9ef46419 +SHA256 (.footprint) = f69fb308bd95ca4bc2bcfb16bbeec309a12f86896860012feea94729e80ac03f +SHA256 (libsass-3.6.0.tar.gz) = b4b962a30bcd99adf0162a8eac7e1be94612b1c19912237f53d9a2c11d375169 diff --git a/libsass/Pkgfile b/libsass/Pkgfile new file mode 100644 index 000000000..1188b6bea --- /dev/null +++ b/libsass/Pkgfile @@ -0,0 +1,16 @@ +# Description: A C/C++ port of the Sass engine +# URL: https://sass-lang.com/libsass +# Maintainer: Matt Housh, jaeger at crux dot ninja + +name=libsass +version=3.6.0 +release=1 +source=(https://github.com/sass/$name/archive/$version/$name-$version.tar.gz) + +build() { + cd $name-$version + autoreconf -fi + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +} |