25 lines
538 B
Plaintext
25 lines
538 B
Plaintext
# Description: SVG rendering library with cairo backend
|
|
# URL: https://wiki.gnome.org/LibRsvg
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: gdk-pixbuf libcroco pango rust-bin
|
|
|
|
name=librsvg
|
|
version=2.44.14
|
|
release=1
|
|
source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-gtk-doc
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{doc,gtk-doc}
|
|
}
|