blob: 25a4a5ed1d0b2e760716e6bdb6cddc5aa7197267 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
SECTION = "utils"
DESCRIPTION = "mdadm is a tool for creating, managing and monitoring \
device arrays using the "md" driver in Linux, also \
known as Software RAID arrays."
MAINTAINER = "Dan Williams <dan.j.williams@gmail.com>"
LICENSE = "GPL"
SRC_URI = "ftp://ftp.kernel.org/pub/linux/utils/raid/mdadm/${PN}-${PV}.tar.bz2"
inherit autotools
INHIBIT_AUTO_STAGE = "1"
do_install() {
export STRIP=""
autotools_do_install
}
|