blob: 70290f9ba95aa22737d5fb3fb791b318f4379412 (
plain)
1 # Description: Generic Cascading Style Sheet parsing and manipulation toolkit.
2 # URL: https://gitlab.gnome.org/GNOME/libcroco
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: glib libxml2
5
6 name=libcroco
7 version=0.6.13
8 release=2
9 source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 --disable-gtk-doc
17
18 make
19 make DESTDIR=$PKG install
20
21 ln -s libcroco-${version%.*}.la $PKG/usr/lib/libcroco.la
22
23 rm -r $PKG/usr/share/gtk-doc
24 }
|