blob: 56223940ee16cda39c5cbe73f205b907727a97fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=unclutter
pkgver=8
pkgrel=1
pkgdesc="Hides mouse cursor when not in use"
url="http://www.x.org/contrib/utilities/unclutter-8.README"
license="GPL"
depends=(x-server)
makedepends=()
conflicts=()
replaces=()
backup=()
install=
arch='i686'
source=(ftp://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z)
build() {
cd $startdir/src/$pkgname
make LDLIBS=-L/usr/X11R6/lib || return 1
mkdir -p $startdir/pkg/usr/X11R6/bin
make DESTDIR=$startdir/pkg BINDIR=$startdir/pkg/usr/X11R6/bin install
}
|