summaryrefslogtreecommitdiff
path: root/package/ffmpeg/Makefile
blob: e9234fa68f4a8fac576e947cd86ecccbba945cf5 (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
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

include ${TOPDIR}/rules.mk

PKG_NAME:=		ffmpeg
PKG_VERSION:=		0.6
PKG_RELEASE:=		1
PKG_MD5SUM:=		d6142a9a5821d6a6262a6edb903faa24
PKG_DESCR:=		solution to record, convert and stream audio and video
PKG_SECTION:=		multimedia
PKG_DEPENDS:=		libfaad2
PKG_BUILDDEP+=		faad2
PKG_URL:=		http://www.ffmpeg.org
PKG_SITES:=		http://www.ffmpeg.org/releases/

DISTFILES:=		${PKG_NAME}-${PKG_VERSION}.tar.bz2

include ${TOPDIR}/mk/package.mk

$(eval $(call PKG_template,FFMPEG,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))

CONFIG_STYLE:=		minimal

include ${TOPDIR}/mk/cpu.mk

CONFIGURE_ARGS:=	--prefix=/usr \
			--target-os=linux \
			--arch=${CPU_ARCH} \
			--enable-cross-compile \
			--source-path=${WRKSRC} \
			--cross-prefix=${TARGET_CROSS} \
			--cc=$(TARGET_CC) \
			--host-cc=$(HOSTCC) \
			--disable-debug \
			--disable-stripping \
			--enable-small \
			--enable-shared \
			--enable-static \
			--disable-ffmpeg \
			--disable-ffplay \
			--disable-ffserver \
			--enable-gpl \
			--enable-swscale \
			--enable-postproc \
			--enable-libfaad \
			${CONFIGURE_CPU_OPTS}

post-install:
	${INSTALL_DIR} ${IDIR_FFMPEG}/usr/lib
	${CP} ${WRKINST}/usr/lib/libavformat.so* ${IDIR_FFMPEG}/usr/lib
	${CP} ${WRKINST}/usr/lib/libavcodec.so* ${IDIR_FFMPEG}/usr/lib
	${CP} ${WRKINST}/usr/lib/libavutil.so* ${IDIR_FFMPEG}/usr/lib

include ${TOPDIR}/mk/pkg-bottom.mk