meta-starlingx/meta-stx-integ/recipes-support/drbd/drbd-utils_8.4.3.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

41 lines
1.3 KiB
BlitzBasic

SUMMARY = "Distributed block device driver for Linux"
DESCRIPTION = " DRBD, developed by LINBIT, is a software that allows RAID 1 functionality over \
TCP/IP and RDMA for GNU/Linux. DRBD is a block device which is designed to build high \
availability clusters and software defined storage by providing a virtual shared device \
which keeps disks in nodes synchronised using TCP/IP or RDMA. This simulates RAID 1 but \
avoids the use of uncommon hardware (shared SCSI buses or Fibre Channel)."
HOMEPAGE = "http://www.drbd.org/"
SECTION = "admin"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=5574c6965ae5f583e55880e397fbb018"
# SRCREV = "89a294209144b68adb3ee85a73221f964d3ee515"
SRCREV = "136c0e42691aed4a4607c79969de87cb8410285c"
PROTOCOL = "https"
BRANCH = "master"
S = "${WORKDIR}/git"
PV = "8.4.3rc1"
SRC_URI = "git://github.com/LINBIT/drbd-8.4.git;name="git";protocol=${PROTOCOL};rev=${SRCREV};branch=${BRANCH}"
# https://www.linbit.com/downloads/drbd/8.4/archive/
inherit autotools
DEPENDS += " \
linux-libc-headers \
glibc \
"
# UPSTREAM_CHECK_URI = "https://github.com/LINBIT/drbd-utils/releases"
inherit autotools-brokensep
RDEPENDS_${PN} += "bash perl-module-getopt-long perl-module-exporter perl-module-constant perl-module-overloading perl-module-exporter-heavy"
do_install_append() {
rm -rf ${D}/var/lock
}