2011-10-03 13:52:12 +02:00
|
|
|
# Description: Generic Cascading Style Sheet parsing and manipulation toolkit.
|
2019-04-29 20:05:24 +10:00
|
|
|
# URL: https://gitlab.gnome.org/GNOME/libcroco
|
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
# Depends on: glib libxml2
|
2011-10-03 13:52:12 +02:00
|
|
|
|
|
|
|
name=libcroco
|
2019-04-29 20:05:24 +10:00
|
|
|
version=0.6.13
|
2019-05-14 22:41:17 +10:00
|
|
|
release=2
|
2019-04-29 20:05:24 +10:00
|
|
|
source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
|
2011-10-03 13:52:12 +02:00
|
|
|
|
|
|
|
build() {
|
2019-04-29 20:05:24 +10:00
|
|
|
cd $name-$version
|
2011-10-03 13:52:12 +02:00
|
|
|
|
2019-04-29 20:05:24 +10:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-gtk-doc
|
2011-10-03 13:52:12 +02:00
|
|
|
|
2019-04-29 20:05:24 +10:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2012-09-17 12:54:37 +02:00
|
|
|
|
2019-04-29 20:05:24 +10:00
|
|
|
ln -s libcroco-${version%.*}.la $PKG/usr/lib/libcroco.la
|
|
|
|
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
2011-10-03 13:52:12 +02:00
|
|
|
}
|