forked from ports/compat-32
24 lines
496 B
Plaintext
24 lines
496 B
Plaintext
# Description: XCB X protocol descriptions
|
|
# URL: https://xcb.freedesktop.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: xorg-xcb-proto
|
|
|
|
name=xorg-xcb-proto-32
|
|
version=1.14.1
|
|
release=1
|
|
source=(https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-$version.tar.xz)
|
|
|
|
build() {
|
|
cd xcb-proto-$version
|
|
|
|
PYTHON='/usr/bin/python3' \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{lib,share}
|
|
}
|