pandora-configtray.bb: Continued to work on recipe
authorMichael Mrozek <EvilDragon@openpandora.de>
Fri, 27 Apr 2012 01:24:01 +0000 (03:24 +0200)
committerMichael Mrozek <EvilDragon@openpandora.de>
Fri, 27 Apr 2012 01:24:01 +0000 (03:24 +0200)
recipes/pandora-system/pandora-configtray.bb

index f663038..bca8492 100755 (executable)
@@ -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
 }
+