25 lines
528 B
Plaintext
25 lines
528 B
Plaintext
# Description: xorg xorgproto
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: xorg-xorgproto
|
|
|
|
name=xorg-xorgproto-32
|
|
version=2020.1
|
|
release=1
|
|
source=(https://xorg.freedesktop.org/archive/individual/proto/xorgproto-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd xorgproto-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--datarootdir=/usr/lib32 \
|
|
--host=i686-pc-linux-gnu
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/include $PKG/usr/lib32/doc
|
|
}
|