mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 00:17:46 +08:00
[skip-ci] added sassc and libsass
This commit is contained in:
parent
e6e0e94356
commit
ed854bf94d
27
libsass/PKGBUILD
Normal file
27
libsass/PKGBUILD
Normal file
@ -0,0 +1,27 @@
|
||||
# Contributions from Arch: https://git.archlinux.org/svntogit/community.git/plain/trunk/PKGBUILD?h=packages/libsass
|
||||
|
||||
pkgname=libsass
|
||||
pkgver=3.5.5
|
||||
pkgrel=1
|
||||
pkgdesc="C implementation of Sass CSS preprocessor (library)."
|
||||
arch=("x86_64")
|
||||
url="http://libsass.org/"
|
||||
license=("MIT")
|
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz")
|
||||
sha256sums=('487ca58f1dfdc4055079af04f0ad120747385d3b3926b1c8f46e4b00540fdb70')
|
||||
|
||||
|
||||
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"
|
||||
}
|
28
sassc/PKGBUILD
Normal file
28
sassc/PKGBUILD
Normal file
@ -0,0 +1,28 @@
|
||||
# Contributions from Arch: https://git.archlinux.org/svntogit/community.git/plain/trunk/PKGBUILD?h=packages/sassc
|
||||
|
||||
pkgname=sassc
|
||||
pkgver=3.5.0
|
||||
pkgrel=1
|
||||
pkgdesc="C implementation of Sass CSS preprocessor."
|
||||
arch=("x86_64")
|
||||
url="http://libsass.org/"
|
||||
license=("MIT")
|
||||
depends=("libsass")
|
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz")
|
||||
sha256sums=("26f54e31924b83dd706bc77df5f8f5553a84d51365f0e3c566df8de027918042")
|
||||
|
||||
|
||||
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"
|
||||
}
|
Loading…
Reference in New Issue
Block a user