summaryrefslogtreecommitdiffstats
path: root/recipes/puzzles/puzzles_r7436.bb
blob: d8bc086cfc69f9cea71f2771ebfe1bf20f852a3f (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
DEPENDS = "gtk+ libxt"

PR = "r3"

SVN_REV = "${@bb.data.getVar('PV',d,1).replace('r', '')}"

SRC_URI = "svn://svn.tartarus.org/sgt;module=puzzles;proto=svn;rev=${SVN_REV} \
           file://game.png"

S = "${WORKDIR}/puzzles"

do_configure () {
	./mkfiles.pl
}

do_compile_prepend = " \
        export XLDFLAGS='${LDFLAGS} `${STAGING_BINDIR_NATIVE}/pkg-config gtk+-2.0 --libs`'; \
	export CFLAGS='${CFLAGS} -I./ `${STAGING_BINDIR_NATIVE}/pkg-config gtk+-2.0 --cflags`'; "

FILES_${PN} = "${prefix}/games/* ${datadir}/applications/* ${datadir}/pixmaps"
FILES_${PN}-dbg += "${prefix}/games/.debug"

do_install () {
    rm -rf ${D}/*
    export prefix=${D}
    export DESTDIR=${D}
    install -d ${D}/${prefix}/
    install -d ${D}/${prefix}/games/
    oe_runmake install

    install -d ${D}/${datadir}/
    install -d ${D}/${datadir}/applications/
    install -d ${D}/${datadir}/pixmaps/

    install ${WORKDIR}/game.png ${D}/${datadir}/pixmaps/

    cd ${D}/${prefix}/games
    for prog in *; do
	if [ -x $prog ]; then
	    echo "making ${D}/${datadir}/applications/$prog.desktop"
	    cat <<STOP > ${D}/${datadir}/applications/$prog.desktop
[Desktop Entry]
Encoding=UTF-8
Name=$prog
Exec=${prefix}/games/$prog
Icon=game.png
Terminal=false
Type=Application
Categories=Game
StartupNotify=true
SingleInstance=true
STOP
        fi
    done
}