2007-06-25 15:09:34 +10:00
|
|
|
# Description: Library for encoding H264/AVC video streams (snapshot).
|
2008-04-01 16:25:33 +10:00
|
|
|
# URL: http://www.videolan.org/developers/x264.html
|
2008-03-26 13:45:31 +11:00
|
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
2007-06-25 15:09:34 +10:00
|
|
|
# Packager: Rouven Schuerch, rs at tegonal dot com
|
2008-12-20 22:04:16 +11:00
|
|
|
# Depends on: yasm
|
2007-06-25 15:09:34 +10:00
|
|
|
|
|
|
|
name=x264
|
2012-01-20 21:26:57 +11:00
|
|
|
version=20120120
|
2007-06-25 15:09:34 +10:00
|
|
|
release=1
|
2012-01-20 21:26:57 +11:00
|
|
|
source=(http://www.hvlinux.net/crux/distfiles/$name/$name-$version-f33c8cb.tar.xz)
|
2007-06-25 15:09:34 +10:00
|
|
|
|
|
|
|
build() {
|
2008-12-19 20:52:27 +11:00
|
|
|
cd $name
|
2007-08-16 10:49:59 +10:00
|
|
|
|
2007-06-25 15:09:34 +10:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2007-08-16 10:49:59 +10:00
|
|
|
--enable-pic \
|
2009-12-26 16:20:58 +11:00
|
|
|
--enable-shared
|
2007-06-25 15:09:34 +10:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2008-04-01 13:45:44 +10:00
|
|
|
chmod a-x $PKG/usr/lib/*.so
|
2007-06-25 15:09:34 +10:00
|
|
|
}
|