blob: 1ea20a2d5822b886ca8242a1e1578010426c9288 (
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
|
DESCRIPTION = "A computer version of the well-known electronic game named Simon"
HOMEPAGE = "http://code.google.com/p/neomis/"
LICENSE = "GPLv3"
AUTHOR = "Valéry Febvre <vfebvre@easter-eggs.com>"
SECTION = "x11/applications"
PRIORITY = "optional"
DEPENDS = "python-native"
PV = "1.1.0+svnr${SRCPV}"
PR = "r1"
S = "${WORKDIR}/trunk"
PACKAGE_ARCH = "all"
SRC_URI = "svn://neomis.googlecode.com/svn;module=trunk;proto=http"
inherit distutils
do_configure_prepend_shr() {
sed -e 's,^Exec=,Exec=/usr/bin/fsoraw -r Display ,g' -i ${S}/data/neomis.desktop
}
FILES_${PN} += "${datadir}/neomis ${datadir}/applications/neomis.desktop ${datadir}/pixmaps"
RDEPENDS += "python-audio python-pyalsaaudio python-elementary"
|