blob: 063742ce978569964e3dffb979de9057de63ed97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "Device specific configuration for prboom"
SECTION = "games"
PRIORITY = "optional"
LICENSE = "GPL"
PR = "r1"
SRC_URI = "file://prboom.cfg"
S = "${WORKDIR}/${PN}"
FILES_${PN} = "/usr/share/games/doom/prboom.cfg"
do_install() {
install -d ${D}/usr/share/games/doom/
install -m 644 ${WORKDIR}/prboom.cfg ${D}/usr/share/games/doom/
}
|