meta-starlingx/meta-stx-cloud/recipes-support/puppet/puppet-ldap_git.bb
Babak Sarashki 63b6601bdd meta-stx: update LICENSE and copyright info
- Change License from Apache2 to MIT.
- Remove Copyright from individual recipes
- Move License to README.md
- Add meta-stx Copyright to README.md

Signed-off-by: Babak Sarashki <Babak.SarAshki@windriver.com>
2020-06-08 13:00:26 -07:00

39 lines
802 B
BlitzBasic

SUMMARY = "OpenLDAP module for Puppet."
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://metadata.json;md5=4244fe391bee02e9ee7259aa7f8dda8b"
PV = "0.2.4"
SRCREV = "480f13af6d17d1d3fcf0dc7b4bd04b49fa4099e1"
PROTOCOL = "https"
BRANCH = "master"
S = "${WORKDIR}/git"
SRC_URI = " \
git://github.com/torian/puppet-ldap;protocol=${PROTOCOL};rev=${SRCREV};branch=${BRANCH} \
file://puppet-ldap/Add-gemspec.patch \
"
inherit ruby
DEPENDS += " \
ruby \
facter \
"
RDEPENDS_${PN} += " \
ruby \
facter \
puppet \
perl \
"
RUBY_INSTALL_GEMS = "${PN}-${PV}.gem"
do_install_append() {
install -d -m 0755 ${D}/${datadir}/puppet/modules/ldap
tar -C ${S} -cf - --exclude "patches" --exclude "*.gem*" . | tar --no-same-owner -xf - -C ${D}/${datadir}/puppet/modules/ldap
}
FILES_${PN} += " ${datadir}"