blob: bc3883390af2f32258caef0d385ab01ebe89b609 (
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
30
|
DESCRIPTION = "Clone of the classic arcade game Asteroids - SDL edition."
SECTION = "opie/games"
PRIORITY = "optional"
LICENSE = "GPL"
PR = "r2"
APPIMAGE = "data/images/icon.png"
APPNAME = "vectoroids-${PV}"
SRC_URI = "ftp://ftp.billsgames.com/unix/x/vectoroids/src/vectoroids-${PV}.tar.gz"
inherit qmake sdl
EXTRA_QMAKEVARS_POST += "INCLUDEPATH+=${STAGING_INCDIR}/SDL CONFIG-=qt \
LIBS+=-lSDL \
LIBS+=-lSDL_mixer \
LIBS+=-lSDL_image \
LIBS+=-lpthread \
DEFINES+=DATA_PREFIX=\\"\"${datadir}/vectoroids/\\"\""
do_configure_prepend() {
qmake -project vectoroids.pro
}
do_install() {
install -d ${D}${bindir}
install -m 0755 ${APPNAME} ${D}${bindir}
install -d ${D}${datadir}/vectoroids/
cp -pPR data/* ${D}${datadir}/vectoroids/
}
|