From: Martin Jansa Date: Sat, 1 May 2010 13:50:12 +0000 (+0200) Subject: fsoraw: add recipe for fsoraw rewritten in vala X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0fd0683b2cec0bf449701a4baf4290587d0f809;p=openembedded.git fsoraw: add recipe for fsoraw rewritten in vala Signed-off-by: Martin Jansa --- diff --git a/recipes/freesmartphone/fsoraw_git.bb b/recipes/freesmartphone/fsoraw_git.bb new file mode 100644 index 0000000000..d16811b03a --- /dev/null +++ b/recipes/freesmartphone/fsoraw_git.bb @@ -0,0 +1,18 @@ +require cornucopia.inc + +DESCRIPTION = "A console wrapper for the FSO Usage API" +AUTHOR = "Michael 'Mickey' Lauer " +SECTION = "fso/base" +LICENSE = "GPLv2" +SRCREV = "${FSO_CORNUCOPIA_SRCREV}" +PV = "1.0.0+gitr${SRCPV}" +PR = "${INC_PR}.0" +PE = "1" + +S = "${WORKDIR}/git/tools/fso-raw" + +# for backward compatibility in scripts +do_install_append() { + install -d ${D}${bindir} + ln -s fso-raw ${D}${bindir}/fsoraw +} diff --git a/recipes/freesmartphone/fsoraw_svn.bb b/recipes/freesmartphone/fsoraw_svn.bb index 74b1274782..f10f2212f0 100644 --- a/recipes/freesmartphone/fsoraw_svn.bb +++ b/recipes/freesmartphone/fsoraw_svn.bb @@ -12,3 +12,9 @@ SRC_URI = "svn://noko.svn.sourceforge.net/svnroot/noko/trunk;module=fsoraw;proto S = "${WORKDIR}/fsoraw/" inherit autotools + +# for forward compatibility in scripts +do_install_append() { + install -d ${D}${bindir} + ln -s fsoraw ${D}${bindir}/fso-raw +}