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