diff options
author | Mattias Andrée <maandree@kth.se> | 2017-12-10 20:05:40 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-12-10 20:05:40 +0100 |
commit | 7fc8e5d06748f61e67892bf7019652347cb85cd5 (patch) | |
tree | 735e5378464267c57b961b7f0d3f9328c315746b /unstickpixels/PKGBUILD | |
parent | m (diff) | |
download | aur-packages-7fc8e5d06748f61e67892bf7019652347cb85cd5.tar.gz aur-packages-7fc8e5d06748f61e67892bf7019652347cb85cd5.tar.bz2 aur-packages-7fc8e5d06748f61e67892bf7019652347cb85cd5.tar.xz |
Update unstickpixels
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | unstickpixels/PKGBUILD | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/unstickpixels/PKGBUILD b/unstickpixels/PKGBUILD index aca68cd..1e0e80d 100644 --- a/unstickpixels/PKGBUILD +++ b/unstickpixels/PKGBUILD @@ -1,28 +1,23 @@ -# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> +# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@kth.se> pkgname=unstickpixels -pkgver=2 +pkgver=3 pkgrel=1 pkgdesc="Screen loop to try to unstick stuck dots" arch=(i686 x86_64) url="https://github.com/maandree/unstickpixels" -license=('GPL3' 'custom:GFDL1.3') -depends=(glibc libgamma) -makedepends=(glibc libgamma make coreutils gcc 'texinfo>=4.11') -install=$pkgname.install -source=($url/archive/$pkgver.tar.gz) -sha256sums=(6f41482108a68b8a6deaefcb5d46d6fff4806947af463b717ce8b77cedaec97f) - +license=('custom:ISC') +depends=(libgamma) +makedepends=(libgamma) +source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz") +sha256sums=(8ae08fff8011916f403b46c0bd57689eaac9fb955b0c691b14fc5318d3fba2d4) build() { cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr - make + make PREFIX=/usr } - package() { cd "$srcdir/$pkgname-$pkgver" - make install N=: DESTDIR="$pkgdir" + make PREFIX=/usr install DESTDIR="$pkgdir" } - |