Advertisement
Guest User

Untitled

a guest
Aug 14th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. DESCRIPTION = "pcsc-lite"
  2. HOMEPAGE = "pcsclite.alioth.debian.org"
  3. LICENSE = "GPLv2"
  4. LIC_FILES_CHKSUM = "file://COPYING;md5=a39d325b7d9cf2f07826a5154b16500c"
  5. DEPENDS = "libusb"
  6.  
  7.  
  8. SRC_URI = "https://alioth.debian.org/frs/download.php/file/3862/pcsc-lite-1.8.8.tar.bz2"
  9.  
  10. # SRC_URI could also point to a git repository, eg:
  11. # SRC_URI = " git://host:port/path/to/repo.git;branch=win;protocol=ssh;user=username"
  12. # any .patch files included here will be auto-magically applied, increasing the -p level until it sticks.
  13. # SRC_URI = "file://omap_ctrl_readl.patch"
  14. #PR = "r0" # Package Revision, Update this whenever you change the recipe.
  15. # For tarball packages (as opposed to git / svn which include the commit in the URI)
  16.  
  17. SRC_URI[md5sum] = "069dc875a2ae2d85a2ebceac73252c0a"
  18. SRC_URI[sha256sum] = "fe66354a7e738d3ef8b4e572c7e447b85894da9262381fbf004e8abcc12885e7"
  19.  
  20. S = "${WORKDIR}/pcsc-lite-${PV}"
  21.  
  22. inherit autotools pkgconfig
  23.  
  24.  
  25. EXTRA_OECONF = " --enable-libusb --disable-libudev "
  26.  
  27. #do_configure() {
  28.  
  29. # ./configure --prefix=${D}${prefix} --libdir=${D}${libdir} --host=arm-poky-linux-gnueabi --sbindir=${D}${sbindir} --includedir=${D}${includedir}
  30.  
  31. #}
  32.  
  33. do_compile() {
  34.  
  35. make
  36. # cd ${S}
  37. # oe_runmake
  38. }
  39.  
  40. #do_install() {
  41.  
  42. # DESTDIR=${D} oe_runmake install
  43.  
  44. #install -d ${D}/${sbindir}
  45. #install -m 0755 -d ${D}/${libdir}
  46. #install -m 0755 -d ${D}/${includedir}/PCSC
  47. #install -m 644 ${S}/src/PCSC/* ${D}/${includedir}/PCSC
  48. #install -m 644 ${S}/src/.libs/*so* ${D}/${libdir}
  49. #install -m 755 ${S}/src/pcscd ${D}/${sbindir}
  50.  
  51. #}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement