blob: 3e4540a0607939bbae051f3f306b7453d633cbf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION="Auto-Correction Paint Program for Opie/Qtopia"
SECTION="base"
PRIORITY="optional"
LICENSE="GPL"
SRC_URI = http://www.urban.ne.jp/home/kanemori/zaurus/FreeNote_${PV}_arm.tar.gz \
file://${FILESDIR}/compile.patch;patch=1
S = ${WORKDIR}/FreeNote_${PV}_arm
inherit palmtop
do_configure_prepend() {
qmake -project -o ${PN}.pro
}
do_install() {
install -d ${D}${palmtopdir}/{bin,apps/Applications,pics}
install -D -m 755 freenoteeintu ${D}${palmtopdir}/bin/freenoteeintu
install -D -m 644 ${FILESDIR}/freenoteeintu.desktop ${D}${palmtopdir}/apps/Applications/freenoteeintu.desktop
install -d ${D}/${palmtopdir}/pics
cp -pPR *.png ${D}${palmtopdir}/pics/
}
|