mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
26 lines
777 B
Bash
26 lines
777 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=libcroco
|
|
pkgver=0.6.2
|
|
pkgrel=2
|
|
pkgdesc="GNOME CSS2 parsing and manipulation toolkit"
|
|
arch=('x86_64' 'i686')
|
|
depends=('glib2>=2.18.4' 'libxml2>=2.7.3')
|
|
makedepends=('intltool' 'pkgconfig')
|
|
license=('LGPL')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.6/${pkgname}-${pkgver}.tar.bz2)
|
|
url="http://www.gnome.org"
|
|
md5sums=('1429c597aa4b75fc610ab3a542c99209')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|