summaryrefslogtreecommitdiffstats
path: root/rules/libwebp.in
diff options
context:
space:
mode:
authorLucas Stach <l.stach@pengutronix.de>2019-04-04 18:14:38 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-04-05 16:29:45 +0200
commit1ae5293d7898c17e059b4511468fe1814828e070 (patch)
treeb033d33e8b24d8ce70af932ac8308b1da05a8116 /rules/libwebp.in
parent85758bda0d61ab6a103efa27427df14471be0713 (diff)
downloadptxdist-1ae5293d7898c17e059b4511468fe1814828e070.tar.gz
ptxdist-1ae5293d7898c17e059b4511468fe1814828e070.tar.xz
libwebp: new package
This adds support for building libwebp and associated tools. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/libwebp.in')
-rw-r--r--rules/libwebp.in31
1 files changed, 31 insertions, 0 deletions
diff --git a/rules/libwebp.in b/rules/libwebp.in
new file mode 100644
index 000000000..1a50e7d42
--- /dev/null
+++ b/rules/libwebp.in
@@ -0,0 +1,31 @@
+## SECTION=system_libraries
+
+menuconfig LIBWEBP
+ tristate
+ prompt "libwebp "
+ help
+ Library to encode and decode images in WebP format.
+
+if LIBWEBP
+
+config LIBWEBP_DECODER
+ bool
+ prompt "additional decoder-only library"
+
+config LIBWEBP_MUX
+ bool
+ prompt "webpmux support"
+
+config LIBWEBP_DEMUX
+ bool
+ prompt "webpdemux support"
+
+config LIBWEBP_CWEBP
+ bool
+ prompt "install cwebp tool"
+
+config LIBWEBP_DWEBP
+ bool
+ prompt "install dwebp tool"
+
+endif