blob: 5d83217635880948c79ad15b3e10c71dc134749c (
plain)
1 # Description: Generic Cascading Style Sheet parsing and manipulation toolkit.
2 # URL: https://launchpad.net/libcroco
3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
4 # Packager: Matt Housh, jaeger at morpheus dot net
5 # Depends on: pango
6
7 name=libcroco
8 version=0.6.12
9 release=1
10 source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr \
16 --disable-static \
17 --disable-gtk-doc
18
19 make
20 make DESTDIR=$PKG install
21 ln -s libcroco-${version%.*}.la $PKG/usr/lib/libcroco.la
22
23 # remove gtk-doc
24 rm -r $PKG/usr/share
25 }
|