blob: f53e8114137e366529f1dab32b95bb8b96449d87 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
DESCRIPTION = "Open Source multimedia player."
SECTION = "opie/games"
PRIORITY = "optional"
DEPENDS = "libsdl-qpe libmad tremor-20030325 libogg libvorbis zlib libpng jpeg sharp-aticore"
SRC_URI = "http://www1.mplayerhq.hu/MPlayer/releases/MPlayer-${PV}.tar.bz2 \
file://Makefile.patch;patch=0 \
file://sdl.patch;patch=0 \
file://zlib.patch;patch=0 "
S = "${WORKDIR}/MPlayer-${PV}"
PACKAGES="${PN} postproc postproc-dev"
FILES_${PN} = "/usr/bin/mplayer"
FILES_postproc = " /usr/lib/libpostproc.so.0.0.0 /usr/lib/libpostproc.so.0"
FILES_postproc-dev = " /usr/include/postprocess.h /usr/lib/libpostproc.so /usr/lib/libpostproc.a"
inherit autotools
EXTRA_OECONF = " \
--prefix=/usr \
--target=${PACKAGE_ARCH} \
--enable-shared-pp \
\
--disable-win32 \
--disable-macosx \
--disable-dvdread \
--disable-mpdvdkit \
--disable-tv \
--disable-tv-v4l \
--disable-tv-v4l2 \
--disable-tv-bsdbt848 \
--disable-mencoder \
\
--enable-dynamic-plugins \
--enable-fbdev \
--enable-sdl \
--with-sdl-config=${STAGING_BINDIR}/sdl-config \
\
--enable-mad \
--enable-tremor \
--enable-vorbis \
\
--enable-ossaudio \
\
--with-extralibdir=${STAGING_LIBDIR} "
# --enable-static \
# --enable-live \
# --with-livelibdir=/Projects/armbuild/live \
# --host=${HOST} \
# --cc=arm-linux-gcc \
# --disable-dvdnav \
do_configure() {
./configure ${EXTRA_OECONF}
}
do_install_append () {
mkdir ${D}/usr/lib
cp ${S}/libavcodec/libpostproc/libpostproc.so ${D}/usr/lib/libpostproc.so.0.0.0
mkdir ${D}/usr/include
cp ${S}/libavcodec/libpostproc/postprocess.h ${D}/usr/include/postprocess.h
cd ${D}/usr/lib
ln -s libpostproc.so.0.0.0 libpostproc.so.0
ln -s libpostproc.so.0 libpostproc.so
}
do_stage () {
oe_libinstall -a -so -C libavcodec/libpostproc libpostproc ${STAGING_LIBDIR}
install -m 0644 ${S}/libavcodec/libpostproc/postprocess.h ${STAGING_INCDIR}/postprocess.h
}
|