Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. SUMMARY = "This pam module provides the authentication service using an own set of user/password pairs."
  2. DESCRIPTION = ""
  3. DEPENDS="openssl libpam"
  4. RDEPENDS_${PN}="libpam"
  5. PR = "r0"
  6.  
  7. SRC_URI = "https://github.com/tiwe-de/libpam-pwdfile/archive/v1.0.zip"
  8.  
  9. SRC_URI[md5sum] = "41fd8a1e7bff2025caaf124109deefd4"
  10. SRC_URI[sha256sum] = "2c7f4f355d7296a6ad0755e6bb4cc4bf69559d7881b3df8946a99265fe4a5af6"
  11.  
  12. LICENSE = "GPL"
  13. LIC_FILES_CHKSUM = "file://pam_pwdfile.c;md5=004fcdd2eeca82ce83579ed3dbf06833"
  14.  
  15. S = "${WORKDIR}/${PN}-1.0/"
  16.  
  17.  
  18. do_install(){
  19.  
  20. install -m 0755 -d ${D}${base_libdir}/security
  21. install -m 0755 pam_pwdfile.so ${D}${base_libdir}/security/pam_pwdfile.so.1.0.0
  22. ln -s pam_pwdfile.so.1.0.0 ${D}${base_libdir}/security/pam_pwdfile.so.1
  23. ln -s pam_pwdfile.so.1.0.0 ${D}${base_libdir}/security/pam_pwdfile.so
  24.  
  25. }
  26.  
  27.  
  28. FILES_${PN} += "/lib/security/pam_pwdfile.so.1.0.0"
  29. FILES_${PN}-dev += "/lib/security/pam_pwdfile.so \
  30. /lib/security/pam_pwdfile.so.1 "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement