24 lines
552 B
Plaintext
24 lines
552 B
Plaintext
# Description: X Video Motion Compensation extension client library
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: xorg-libxv-32 xorg-libxvmc
|
|
|
|
name=xorg-libxvmc-32
|
|
version=1.0.14
|
|
release=1
|
|
source=(https://www.x.org/releases/individual/lib/libXvMC-$version.tar.xz)
|
|
|
|
build() {
|
|
cd libXvMC-$version
|
|
|
|
# prevent linking against libxv
|
|
export XVMC_LIBS="-lX11 -lXext"
|
|
|
|
./configure --prefix=/usr --libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{include,share/doc}
|
|
}
|