diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
commit | 65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 (patch) | |
tree | fbfdff322b28d9a3c37e6e31c94caf1d8e48dac1 /community/unclutter/PKGBUILD | |
parent | d53c44f055929b18d7d1b25f8367ee5836c435fc (diff) |
Fri Dec 27 23:54:04 UTC 2013
Diffstat (limited to 'community/unclutter/PKGBUILD')
-rw-r--r-- | community/unclutter/PKGBUILD | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/community/unclutter/PKGBUILD b/community/unclutter/PKGBUILD index 263708422..b9514cd2f 100644 --- a/community/unclutter/PKGBUILD +++ b/community/unclutter/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 65341 2012-02-21 02:13:14Z spupykin $ +# $Id: PKGBUILD 102123 2013-12-05 14:32:44Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Callan Barrett <wizzomafizzo@gmail.com> @@ -6,20 +6,27 @@ pkgname=unclutter pkgver=8 -pkgrel=8 +pkgrel=10 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') +source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z + http://ftp.x.org/contrib/utilities/unclutter-8.README) +md5sums=('83d7a6498b69078f869378f801b6a84b' + '90ea7ff9f64945a6ca979d08a60c28dd') build() { cd ${srcdir}/$pkgname xmkmf -a make +} + +package() { + cd ${srcdir}/$pkgname make DESTDIR=${pkgdir} install - install -D -m 644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1 + install -Dm0644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1 + install -Dm0644 $srcdir/unclutter-8.README ${pkgdir}/usr/share/licenses/$pkgname/unclutter-8.README } |