24 lines
515 B
Plaintext
24 lines
515 B
Plaintext
# Description: Library for encoding H264/AVC video streams (snapshot).
|
|
# URL: http://www.videolan.org/developers/x264.html
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Rouven Schuerch, rs at tegonal dot com
|
|
# Depends on: yasm
|
|
|
|
name=x264
|
|
version=20141022
|
|
release=1
|
|
source=(http://crux.ster.zone/distfiles/$name/$name-$version-021c0dc.tar.xz)
|
|
|
|
build() {
|
|
cd $name
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-pic \
|
|
--enable-shared
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
chmod a-x $PKG/usr/lib/*.so
|
|
}
|