blob: c636de3c31ecef53a6e68fc4c95e5b279225eb5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# cdstatus OE build file
FILE_PR ="r2"
LICENSE="GPL"
HOMEPAGE = "http://cdstatus.sourceforge.net/"
FILES_${PN} += "${datadir}/cdstatus.cfg"
SRC_URI="${SOURCEFORGE_MIRROR}/cdstatus/cdstatus-0.96.05.tar.gz \
file://cdstatus.patch;patch=1"
S="${WORKDIR}/cdstatus-0.96.05"
inherit autotools
do_install() {
install -d 0755 ${D}/${bindir}
install -d 0755 ${D}/${datadir}
install -d 0755 ${D}/${mandir}
install -m 0755 src/cdstatus ${D}/${bindir}
install -m 0644 cdstatus.cfg ${D}/${datadir}
install -m 0644 cdstatus.1 ${D}/${mandir}
}
|