blob: e63b87b208c759711ce54cdca7ea5d7540a89a24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
description="X Fixes extension client library"
packager=""
maintainer="Tilman Sauerbeck, tilman at crux dot nu"
url="http://xorg.freedesktop.org"
depends=(xorg-libx11 xorg-xproto xorg-fixesproto xorg-xextproto)
name=xorg-libxfixes
version=4.0.5
release=1
source=(http://xorg.freedesktop.org/releases/individual/lib/libXfixes-4.0.5.tar.bz2)
build ()
{
cd libXfixes-$version;
./configure --prefix=/usr --mandir=$mandir;
make;
make DESTDIR=$PKG install
}
|