mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
27 lines
620 B
Bash
27 lines
620 B
Bash
# Platform packages for Chakra
|
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributor from Arch: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=libcroco
|
|
pkgver=0.6.8
|
|
pkgrel=6
|
|
pkgdesc="A CSS parsing library"
|
|
arch=('x86_64')
|
|
depends=('glib2' 'libxml2')
|
|
makedepends=('intltool')
|
|
license=('LGPL')
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/0.6/$pkgname-$pkgver.tar.xz")
|
|
url="http://www.gnome.org"
|
|
md5sums=('767e73c4174f75b99695d4530fd9bb80')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|