From: Michael Mrozek Date: Fri, 27 Apr 2012 01:24:01 +0000 (+0200) Subject: pandora-configtray.bb: Continued to work on recipe X-Git-Tag: sz_beta4~3 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd75718c69e03ed6313641ecffd1e5e41ef0595a;p=openpandora.oe.git pandora-configtray.bb: Continued to work on recipe --- diff --git a/recipes/pandora-system/pandora-configtray.bb b/recipes/pandora-system/pandora-configtray.bb index f663038..bca8492 100755 --- a/recipes/pandora-system/pandora-configtray.bb +++ b/recipes/pandora-system/pandora-configtray.bb @@ -1,20 +1,24 @@ DESCRIPTION = "A tray applet to change various Pandora-related settings" -LICENSE = "lGPL" PR = "r1" PARALLEL_MAKE = "" +DEPENDS = "virtual/libx11" SRC_URI = " \ - git://github.com/slaeshjag/pandora-configbutton.git\ + git://github.com/slaeshjag/pandora-configbutton.git;protocol=git;branch=master \ " SRCREV = "1e8825da17a86cb0d0e63a693f4dd1f146f6e332" S = "${WORKDIR}/git" -EXTRA_OEMAKE = "PREFIX=${prefix}" - do_install() { - oe_runmake -e install DESTDIR=${D} PREFIX=${prefix} + install -d ${D}${bindir}/ + install -m 0755 ${S}/configbutton ${D}${bindir}/configbutton + install -m 0755 ${S}/bluetooth.so ${D}${bindir}/bluetooth.so + install -m 0755 ${S}/cpuspeed.so ${D}${bindir}/cpuspeed.so + install -m 0755 ${S}/usbhost.so ${D}${bindir}/usbhost.so + install -m 0755 ${S}/wifi.so ${D}${bindir}/wifi.so } +