blob: e1af70d9aaa98f9bcd933444f604994c46cf99ec (
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
|
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/trunk;module=.;proto=http \
file://vorbis-include-id3tag.patch;pnum=1;patch=1;maxrev=18"
S = "${WORKDIR}"
inherit autotools
do_configure_prepend() {
rm -f "${S}/INSTALL"
touch "${S}/INSTALL"
sed -i 's/{prefix}\/doc\/intone$/{prefix}\/share\/doc\/intone/g' ${S}/Makefile.am
}
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/*"
|