blob: bcb19bae2c0033169aca2a84647731017865a43f (
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+"
PR = "r4"
MOD_PV = "${@bb.data.getVar('PV',d,1)[1:]}"
#SRC_URI = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${PV}.tar.gz"
SRC_URI = "svn://ixion.tartarus.org/main;module=puzzles;rev=${MOD_PV} \
file://makedist_hack.patch;patch=1"
S = "${WORKDIR}/${PN}"
do_configure () {
./makedist.sh ${MOD_PV}
}
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/*"
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/
cd ${D}/${prefix}/games
for prog in *; do
if [ -x $prog ]; then
# Convert prog to Title Case
firstchar=${prog:0:1}
title=`echo "$firstchar" | tr a-z A-Z`
title="$title${prog:1}"
echo "making ${D}/${datadir}/applications/$prog.desktop"
cat <<STOP > ${D}/${datadir}/applications/$prog.desktop
[Desktop Entry]
Encoding=UTF-8
Name=$title
Exec=${prefix}/games/$prog
Icon=applications-games
Terminal=false
Type=Application
Categories=Game;
StartupNotify=true
SingleInstance=true
STOP
fi
done
}
|