blob: c252d21894d45ba61084dbc8a43f125f6c5c0f72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
SECTION = "base"
HOMEPAGE = "http://linux.dell.com/devlabel/devlabel.html"
DESCRIPTION = "tool for user-define static device labels"
DEPENDS = "util-linux-ng"
RDEPENDS = "bash util-linux-ng"
LICENSE = "GPL"
PR = "r0"
SRC_URI = "http://linux.dell.com/devlabel/permalink/devlabel-${PV}.tar.gz"
do_compile () {
set -x
${CC} ${CFLAGS} ${LDFLAGS} -o scsi_unique_id scsi_unique_id.c
${CC} ${CFLAGS} ${LDFLAGS} -o partition_uuid partition_uuid.c -luuid
set +x
}
do_install () {
install -d ${D}${base_sbindir} ${D}${bindir} ${D}${mandir}/man8 \
${D}${sysconfdir}/sysconfig/devlabel.d
install -m 755 devlabel ${D}${base_sbindir}/devlabel
install -m 755 scsi_unique_id ${D}${bindir}/
install -m 755 partition_uuid ${D}${bindir}/
install -m 644 devlabel.8.gz ${D}${mandir}/man8/
install -m 644 sysconfig.devlabel ${D}${sysconfdir}/sysconfig/devlabel
}
SRC_URI[md5sum] = "1a4032b942d8b47544da1957374a9786"
SRC_URI[sha256sum] = "1dd2cce79f93cb3483fefdc02f65ed0868754ad12360c830d5f5cbe95da8e0e4"
|