From cd75718c69e03ed6313641ecffd1e5e41ef0595a Mon Sep 17 00:00:00 2001 From: Michael Mrozek Date: Fri, 27 Apr 2012 03:24:01 +0200 Subject: [PATCH] pandora-configtray.bb: Continued to work on recipe --- recipes/pandora-system/pandora-configtray.bb | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) 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 } + -- 2.39.5