28 lines
655 B
Plaintext
28 lines
655 B
Plaintext
# Description: A free and open video compression format from the Xiph.org Foundation.
|
|
# URL: https://www.theora.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: libtheora libvorbis-32
|
|
|
|
name=libtheora-32
|
|
version=1.1.1
|
|
release=1
|
|
source=(https://downloads.xiph.org/releases/theora/libtheora-$version.tar.xz)
|
|
|
|
build() {
|
|
cd libtheora-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--mandir=/usr/man \
|
|
--disable-examples \
|
|
--host=i686-pc-linux-gnu
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/doc
|
|
rmdir $PKG/usr/share
|
|
|
|
rm -rf $PKG/{etc,var} $PKG/usr/{bin,etc,include,man,sbin,share}
|
|
}
|