summaryrefslogtreecommitdiffstats
path: root/extra/x264/Pkgfile
blob: bdd1e833a1395991a5654a478971561d1886191a (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
# Description: Librairie libre pour encoder des flux vidéos en H264/AVC
# URL: http://www.videolan.org/developers/x264.html
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: yasm 
# Run on: yasm

name=x264
version=20110630
release=1
source=(ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-$version-2245.tar.bz2)

build() {
	cd x264-snapshot-$version-2245

	sed -i \
		-e 's/-O4/-O3/' \
		-e 's|-I/usr/X11R6/include|-I/usr/X11/include|' configure

	./configure \
		--prefix=/usr \
		--enable-pic \
		--enable-pthread \
		--enable-shared 

	make
	make DESTDIR=$PKG install
	chmod a-x $PKG/usr/lib/*.so
}