37375312b9
In issue https://github.com/termux/termux-packages/issues/6160 I have found that community repo "its-pointless.github.io" specifies us as maintainer for its packages. This is NOT TRUE and potentially misleads people using these packages. Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral and not specify maintainer. So all packages now have to override it to the correct value. [skip ci] %ci:no-build
25 lines
912 B
Bash
25 lines
912 B
Bash
TERMUX_PKG_HOMEPAGE=https://wiki.gnome.org/action/show/Projects/LibRsvg
|
|
TERMUX_PKG_DESCRIPTION="Library to render SVG files using cairo"
|
|
TERMUX_PKG_LICENSE="LGPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=2.50.2
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=http://ftp.gnome.org/pub/GNOME/sources/librsvg/${TERMUX_PKG_VERSION:0:4}/librsvg-${TERMUX_PKG_VERSION}.tar.xz
|
|
TERMUX_PKG_SHA256=6211f271ce4cd44a7318190d36712e9cea384a933d3e3570004edeb210a056d3
|
|
TERMUX_PKG_DEPENDS="gdk-pixbuf, libcairo, libcroco, pango, zlib"
|
|
TERMUX_PKG_BREAKS="librsvg-dev"
|
|
TERMUX_PKG_REPLACES="librsvg-dev"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
ac_cv_path_GDK_PIXBUF_QUERYLOADERS=$TERMUX_PREFIX/bin/gdk-pixbuf-query-loaders
|
|
--disable-introspection
|
|
"
|
|
|
|
termux_step_pre_configure() {
|
|
termux_setup_rust
|
|
|
|
LDFLAGS+=" -fuse-ld=lld"
|
|
|
|
# See https://github.com/GNOME/librsvg/blob/master/COMPILING.md
|
|
export RUST_TARGET=$CARGO_TARGET_NAME
|
|
}
|