blob: 29773c2638717995d5089128422d37305d4ada4f (
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
|
DESCRIPTION = "intone is a mplayer frontend for openmoko phones"
HOMEPAGE = "http://code.google.com/p/intone/"
AUTHOR = "cchandel"
LICENSE = "GPLv2"
SECTION = "e/apps"
DEPENDS = "elementary eina sqlite3 edbus libvorbis id3lib"
RDEPENDS = "mplayer lame libxv libsdl-x11"
PV = "0.66+svnr${SRCPV}"
PR = "r2"
SRC_URI = "svn://intone.googlecode.com/svn;module=trunk;proto=http \
file://vorbis-include-id3tag.patch;pnum=1;patch=1;maxrev=18"
S = "${WORKDIR}/trunk"
inherit autotools
do_install_append() {
mkdir -p "${D}/${datadir}/pixmaps"
install -m 0644 "${S}/resources/intone.png" "${D}/${datadir}/pixmaps"
mkdir -p "${D}/${datadir}/applications"
install -m 0644 "${S}/resources/intone.desktop" "${D}/${datadir}/applications"
mkdir -p "${D}/${datadir}/intone"
for ico in "${S}/resources/"*.png; do
if [ "$(basename $ico)" != "intone.png" ]; then
install -m 0644 $ico "${D}/${datadir}/intone"
fi
done
}
FILES_${PN} += "/usr/share/intone/* /usr/share/applications/* /usr/share/pixmaps/*"
|