blob: 9862457b1871a5ed8951350ac5ba24dcfd724fce (
plain)
1 # Description: SVG rendering library with cairo backend
2 # URL: https://wiki.gnome.org/LibRsvg
3 # Maintainer: UNMAINTAINED
4 # Depends on: gtk3 libcroco
5
6 name=librsvg
7 version=2.40.20
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 }
|