Advertisement
Guest User

Untitled

a guest
Aug 7th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. DESCRIPTION = "libhid"
  2. HOMEPAGE = "http://libhid.alioth.debian.org/"
  3. LICENSE = "GPLv2"
  4. LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
  5.  
  6. DEPENDS = "libusb"
  7.  
  8. #SRC_URI = "http://alioth.debian.org/frs/download.php/file/1958/libhid-${PV}.tar.bz2"
  9.  
  10. SRC_URI = "http://alioth.debian.org/frs/download.php/file/1958/libhid-0.2.16.tar.gz"
  11.  
  12. # SRC_URI could also point to a git repository, eg:
  13. # SRC_URI = " git://host:port/path/to/repo.git;branch=win;protocol=ssh;user=username"
  14. # any .patch files included here will be auto-magically applied, increasing the -p level until it sticks.
  15. # SRC_URI = "file://omap_ctrl_readl.patch"
  16. #PR = "r0" # Package Revision, Update this whenever you change the recipe.
  17. # For tarball packages (as opposed to git / svn which include the commit in the URI)
  18.  
  19. SRC_URI[md5sum] = "f2a427a6d6b98a5db8d17e2777173af7"
  20. SRC_URI[sha256sum] = "f6809ab3b9c907cbb05ceba9ee6ca23a705f85fd71588518e14b3a7d9f2550e5"
  21.  
  22. S = "${WORKDIR}/libhid-${PV}"
  23.  
  24. do_configure () {
  25. ./configure --without-doxygen --enable-swig --without-distcc --build=i686-linux --host=arm-poky-linux-gnueabi --target=arm-poky-linux-gnueabi
  26. }
  27.  
  28. do_compile () {
  29. make
  30. }
  31.  
  32. do_install () {
  33. DESTDIR=${D} oe_runmake install
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement