blob: 64f87616c2333b1ea986f1c071ebe292cd9a3cdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "Hiragana and Katakana drill tool"
HOMEPAGE = "http://clayo.org/kanatest/
SECTION = "gpe/games"
LICENSE = "GPL"
DEPENDS = "gtk+"
SRC_URI = "http://clayo.org/kanatest/${PN}-${PV}.tar.gz \
file://${PN}.desktop"
inherit autotools gettext
CFLAGS += "-D_GNU_SOURCE"
do_install_append () {
install -d ${D}${datadir}/applications/
install -m 0644 ${WORKDIR}/${PN}.desktop ${D}${datadir}/applications/${PN}.desktop
}
FILES_${PN} = "${bindir}/${PN} ${datadir}/${PN} ${datadir}/pixmaps ${datadir}/applications"
|