From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/opencv/artoolkit_2.72.1.bb | 51 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 recipes/opencv/artoolkit_2.72.1.bb (limited to 'recipes/opencv/artoolkit_2.72.1.bb') diff --git a/recipes/opencv/artoolkit_2.72.1.bb b/recipes/opencv/artoolkit_2.72.1.bb new file mode 100644 index 0000000000..2dfbc429bc --- /dev/null +++ b/recipes/opencv/artoolkit_2.72.1.bb @@ -0,0 +1,51 @@ +DESCRIPTION = "ARToolKit is a software library that allows for the creation of augmented reality applications. " +LICENSE = "GPL/ARToolkit" + +DEPENDS = "libxi gstreamer virtual/libx11 freeglut mesa" + +SRC_URI = "${SOURCEFORGE_MIRROR}/artoolkit/ARToolKit-${PV}.tgz \ + file://configure.diff;patch=1 \ + file://paddle.diff;patch=1 " + +S = "${WORKDIR}/ARToolKit" + +LDFLAGS_append = " `pkg-config --libs gstreamer-0.10` -lpthread -lglut -lGLU -lGL -lXi -lX11 -lm" + +do_configure() { + for i in $(find ${S} -name Makefile.in) ; do + sed -i -e /^CC/d \ + -e s/cc\ /'${CXX}'\ /g \ + -e s/ar\ /${AR}\ /g \ + -e 's:$(LDFLAG):$(LDFLAG) $(LDFLAGS):g' \ + -e 's:$(CFLAG):$(CFLAG) $(CFLAGS):g'\ + $i + done + ./Configure << EOF +5 +y +n +EOF +} + +export CC + +do_compile() { + oe_runmake +} + +do_install() { + install -d ${D}/${bindir} + install -m 0755 ${S}/bin/[a-z]* ${D}/${bindir} + + install -d ${D}/${datadir}/ARToolKit + cp -pPr ${S}/bin/{Data,Wrl} ${D}/${datadir}/ARToolKit/ + + install -d ${D}${libdir} + install -m 0644 ${S}/lib/*.a ${D}${libdir} +} + +FILES_${PN} += "${datadir}/ARToolKit" + + + + -- cgit 1.2.3-korg