blob: d55b58a705c92b2a12261143d3e9f8b6f01e6337 (
plain)
1 # Description: SVG rendering library with cairo backend
2 # URL: https://wiki.gnome.org/LibRsvg
3 # Maintainer: UNMAINTAINED
4 # Depends on: gobject-introspection gtk3 libcroco gdk-pixbuf
5
6 name=librsvg
7 version=2.40.18
8 release=1
9 source=(ftp://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --disable-static \
16 --disable-gtk-doc
17
18 make
19 make DESTDIR=$PKG install
20 rm -r $PKG/usr/share/gtk-doc
21 }
|