blob: bcfcee14cd163d059f798f5d502815732314508f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "Device specific configuration for prboom"
SECTION = "games"
PRIORITY = "optional"
MAINTAINER = "coredump@handhelds.org"
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/
}
|