PKGBUILDs/community/unclutter/PKGBUILD
2009-10-09 21:15:33 -05:00

24 lines
734 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Callan Barrett <wizzomafizzo@gmail.com>
# Contributor: Anthony Martin <ality@pbrane.org>
pkgname=unclutter
pkgver=8
pkgrel=5
pkgdesc="A small program for hiding the mouse cursor"
url="http://ftp.x.org/contrib/utilities/unclutter-8.README"
arch=('i686' 'x86_64')
license=('Public Domain')
depends=('libxext')
makedepends=('imake')
source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z)
md5sums=('83d7a6498b69078f869378f801b6a84b')
build() {
cd ${srcdir}/$pkgname
xmkmf -a
make || return 1
make DESTDIR=${pkgdir} install
install -D -m 644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1
}