24 lines
635 B
Plaintext
24 lines
635 B
Plaintext
# Description: An ISO MPEG-4 compliant video codec
|
|
# URL: http://www.xvid.org/
|
|
# Packager: Matt Housh, jaeger at crux dot nu
|
|
# Maintainer: Lucas Hazel, lucas at die dot net dot au
|
|
# Nice to have: yasm
|
|
|
|
name=libxvid
|
|
version=1.2.2
|
|
release=1
|
|
source=(http://downloads.xvid.org/downloads/xvidcore-$version.tar.bz2)
|
|
#$name-$version-nasm-compat.patch)
|
|
|
|
build() {
|
|
mkdir -p $PKG/usr/{include,lib}
|
|
cd xvidcore
|
|
# patch -p0 -i $SRC/$name-$version-nasm-compat.patch
|
|
cd build/generic/
|
|
autoconf
|
|
./configure --prefix=/usr
|
|
make
|
|
make includedir=$PKG/usr/include libdir=$PKG/usr/lib install
|
|
ln -s libxvidcore.so.4.1 $PKG/usr/lib/libxvidcore.so
|
|
}
|