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

include $(ADK_TOPDIR)/rules.mk

PKG_NAME:=		libx264
# actually is git checkout from 22.09.2014
PKG_VERSION:=		1.0.3
PKG_RELEASE:=		1
PKG_HASH:=		a87c87fd45915557c42e8534831310c3149a0addf4e7b0b337721e57ac4fe7df
PKG_DESCR:=		h264 encoding library
PKG_SECTION:=		libs/video
PKG_URL:=		http://www.videolan.org/developers/x264.html
PKG_SITES:=		http://openadk.org/distfiles/
PKG_OPTS:=		dev

PKG_BUILDDEP_IBM_X40:=	yasm-host

include $(ADK_TOPDIR)/mk/package.mk

$(eval $(call PKG_template,LIBX264,libx264,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))

CONFIG_STYLE:=		minimal

ifeq ($(ADK_TARGET_SYSTEM_SHARP_ZAURUS),y)
CONFIGURE_ARGS+=	--disable-asm
endif
CONFIGURE_ARGS+=	--disable-cli \
			--disable-opencl \
			--enable-shared \
			--prefix=/usr \
			--host=${GNU_TARGET_NAME} \
			--sysroot=${STAGING_TARGET_DIR} \
			--cross-prefix=$(TARGET_CROSS)

libx264-install:
	$(INSTALL_DIR) $(IDIR_LIBX264)/usr/lib
	$(CP) $(WRKINST)/usr/lib/libx264*.so* \
		$(IDIR_LIBX264)/usr/lib

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