22 lines
479 B
Plaintext
22 lines
479 B
Plaintext
# Description: Library of code to handle network protocol transport
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: xorg-util-macros
|
|
|
|
name=xorg-xtrans
|
|
version=1.5.0
|
|
release=1
|
|
source=(https://www.x.org/releases/individual/lib/xtrans-$version.tar.xz)
|
|
|
|
build() {
|
|
cd xtrans-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm $PKG/usr/share/doc/xtrans/xtrans.xml
|
|
rmdir $PKG/usr/share/doc/{xtrans,}
|
|
}
|