mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
8980f0d2a2
SECTION has been used inconsistently throughout the recipes in this layer. Convert them to all use the same convention. Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
32 lines
799 B
BlitzBasic
32 lines
799 B
BlitzBasic
SUMMARY = "netcf"
|
|
DESCRIPTION = "netcf is a cross-platform network configuration library."
|
|
HOMEPAGE = "https://fedorahosted.org/netcf/"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPLv2.1"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=bbb461211a33b134d42ed5ee802b37ff"
|
|
|
|
SRCREV = "b8a19dc860b38c97c42115d8a559b78853452a4b"
|
|
PV = "0.2.3+git${SRCPV}"
|
|
|
|
SRC_URI = "git://git.fedorahosted.org/netcf.git;protocol=git \
|
|
"
|
|
|
|
DEPENDS += "augeas libnl libxslt libxml2 gnulib"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit gettext autotools-brokensep pkgconfig
|
|
|
|
EXTRA_OECONF_append_class-target = " --with-driver=redhat"
|
|
do_configure_prepend() {
|
|
cd ${S}
|
|
rm -f .gitmodules
|
|
./bootstrap --gnulib-srcdir=${STAGING_DATADIR}/gnulib
|
|
}
|
|
|
|
do_install_append() {
|
|
mv ${D}${sysconfdir}/rc.d/init.d/ ${D}${sysconfdir}
|
|
rm -rf ${D}${sysconfdir}/rc.d/
|
|
}
|