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