21 lines
398 B
Plaintext
21 lines
398 B
Plaintext
# Description: X client library
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: xorg-libxcb xorg-xtrans
|
|
|
|
name=xorg-libx11
|
|
version=1.8.3
|
|
release=1
|
|
source=(https://www.x.org/releases/individual/lib/libX11-$version.tar.xz)
|
|
|
|
build() {
|
|
cd libX11-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-specs
|
|
|
|
make
|
|
make DESTDIR="$PKG" install
|
|
}
|