123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- set -e
- program=librsvg
- version=2.40.21
- release=1
- pkgcategory=libs
- tarname=${program}-${version}.tar.xz
- fetch="https://download.gnome.org/sources/librsvg/${version%.*}/$tarname"
- description="
- A high performance SVG rendering library.
- The librsvg package contains librsvg libraries and tools used to
- manipulate, convert and view Scalable Vector Graphic images.
- "
- homepage=https://wiki.gnome.org/Projects/LibRsvg
- license="GPLv2+, LGPLv2+"
- docs="AUTHORS COPYING* NEWS README"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
-
- patch -Np1 -i "${worktree}/patches/librsvg/10_rsvg-gz.patch"
- patch -Np1 -i "${worktree}/patches/librsvg/remove-tests.patch"
- patch -Np1 -i "${worktree}/patches/librsvg/hide-private-symbol.patch"
- ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" \
- LDFLAGS="$QILDFLAGS -Wl,--no-keep-memory,-z,defs -Wl,-O1 -Wl,--as-needed" \
- $configure_args \
- --mandir=$mandir \
- --libdir=/usr/lib${libSuffix} \
- --enable-static=no \
- --enable-shared=yes \
- --enable-pixbuf-loader \
- --enable-introspection \
- --enable-vala \
- --disable-rpath \
- --build="$(gcc -dumpmachine)"
- make -j${jobs} V=1
- make -j${jobs} V=1 DESTDIR="$destdir" install-strip
-
- if test -d "${destdir}/$mandir"
- then
- (
- cd "${destdir}/$mandir"
- find . -type f -exec lzip -9 {} +
- find . -type l | while read -r file
- do
- ln -sf "$(readlink -- "$file").lz" "${file}.lz"
- rm -- "$file"
- done
- )
- fi
-
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|