xorg/xorg-xorgproto/Pkgfile

26 lines
571 B
Plaintext

# Description: Headers defining the core protocol and extensions for the X Window System
# URL: http://xorg.freedesktop.org
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
# Depends on:
name=xorg-xorgproto
version=2019.1
release=1
source=(https://xorg.freedesktop.org/archive/individual/proto/xorgproto-$version.tar.bz2)
build() {
cd xorgproto-$version
./configure \
--prefix=/usr \
--enable-legacy
make
make DESTDIR=$PKG install
# conflict with xorg-xf86rushproto
rm $PKG/usr/include/X11/extensions/xf86rush*
rm -r $PKG/usr/share/doc
}