forked from ports/compat-32
24 lines
579 B
Plaintext
24 lines
579 B
Plaintext
# Description: xorg lib libXmu
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: xorg-libxt-32 xorg-xextproto-32 xorg-libxext-32 xorg-libx11-32 xorg-libxmu
|
|
|
|
name=xorg-libxmu-32
|
|
version=1.1.2
|
|
release=1
|
|
source=(http://xorg.freedesktop.org/releases/individual/lib/libXmu-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd libXmu-$version
|
|
|
|
./configure --prefix=/usr --libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm $PKG/usr/share/doc/libXmu/{Xmu.xml,xlogo.svg}
|
|
find $PKG/usr/share -type d -delete
|
|
|
|
rm -r $PKG/usr/include
|
|
}
|