From 356dcff165f882dde1f29e66f46f2c3a2ba7b31d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 16 Nov 2015 00:06:23 +0100 Subject: [PATCH] vigra: initial add 1.10.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-support/vigra/vigra_1.10.0.bb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 recipes-support/vigra/vigra_1.10.0.bb diff --git a/recipes-support/vigra/vigra_1.10.0.bb b/recipes-support/vigra/vigra_1.10.0.bb new file mode 100644 index 0000000..396ee29 --- /dev/null +++ b/recipes-support/vigra/vigra_1.10.0.bb @@ -0,0 +1,20 @@ +SUMMARY = "VIGRA is an image processing and analysis library" +HOMEPAGE = "http://ukoethe.github.io/vigra/" +LICENSE = "MIT" +LIC_FILES_CHKSUM = " \ + file://LICENSE.txt;md5=3c8d5650f165c9d2bf413c64aa33dc15 \ +" + +SRC_URI = "git://github.com/ukoethe/vigra.git" +SRCREV = "e6c21f3506d783242222c44b2f4f4ec55afdab01" +S = "${WORKDIR}/git" + +inherit cmake + +DEPENDS = "tiff jpeg libpng" + +do_install_append() { + # doc does not have useful content and is installed at the wrong location + # so delete it + rm -rf "${D}/${prefix}/doc" +}