initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

32
libsass/PKGBUILD Normal file
View File

@@ -0,0 +1,32 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libsass
pkgver=3.6.4
pkgrel=1
pkgdesc="C implementation of Sass CSS preprocessor (library)."
arch=(i686 x86_64)
url="https://sass-lang.com/libsass"
license=(Expat)
source=($pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz)
sha512sums=('1f79553be31949d45adf440dcbcf4b828a7e4f71c6f63f288f99451fccc490ebf0c68c58d91deabede37962e35a8cf9af8b0d60d89349fd0adea1ac061c8c2c8')
prepare() {
cd "$srcdir/$pkgname-$pkgver"
autoreconf -i
}
build() {
cd "$srcdir/$pkgname-$pkgver"
export LIBSASS_VERSION="$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}