mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-28 16:03:45 +08:00
package/libsvg-cairo: new package
Libsvg-cairo provides the ability to render SVG content from files or buffers. All rendering is performed using the cairo rendering library. [Peter: license is LGPLv2.1+] Signed-off-by: Carsten Schoenert <c.schoenert@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
659a1f7279
commit
dba2bef10a
@ -465,6 +465,7 @@ source "package/libqrencode/Config.in"
|
||||
source "package/libraw/Config.in"
|
||||
source "package/librsvg/Config.in"
|
||||
source "package/libsvg/Config.in"
|
||||
source "package/libsvg-cairo/Config.in"
|
||||
source "package/libsvgtiny/Config.in"
|
||||
source "package/libungif/Config.in"
|
||||
source "package/opencv/Config.in"
|
||||
|
11
package/libsvg-cairo/Config.in
Normal file
11
package/libsvg-cairo/Config.in
Normal file
@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_LIBSVG_CAIRO
|
||||
bool "libsvg-cairo"
|
||||
select BR2_PACKAGE_CAIRO
|
||||
select BR2_PACKAGE_CAIRO_SVG
|
||||
select BR2_PACKAGE_LIBSVG
|
||||
help
|
||||
Libsvg-cairo provides the ability to render SVG content from
|
||||
files or buffers. All rendering is performed using the cairo
|
||||
rendering library.
|
||||
|
||||
http://cairographics.org
|
14
package/libsvg-cairo/libsvg-cairo.mk
Normal file
14
package/libsvg-cairo/libsvg-cairo.mk
Normal file
@ -0,0 +1,14 @@
|
||||
################################################################################
|
||||
#
|
||||
# libsvg-cairo
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBSVG_CAIRO_VERSION = 0.1.6
|
||||
LIBSVG_CAIRO_SITE = http://cairographics.org/snapshots/
|
||||
LIBSVG_CAIRO_DEPENDENCIES = cairo libsvg
|
||||
LIBSVG_CAIRO_INSTALL_STAGING = YES
|
||||
LIBSVG_CAIRO_LICENSE = LGPLv2.1+
|
||||
LIBSVG_CAIRO_LICENSE_FILES = COPYING
|
||||
|
||||
$(eval $(autotools-package))
|
Loading…
Reference in New Issue
Block a user