diff options
Diffstat (limited to 'unstickpixels')
-rw-r--r-- | unstickpixels/PKGBUILD | 28 | ||||
-rw-r--r-- | unstickpixels/unstickpixels.install | 20 | ||||
l--------- | unstickpixels/upload | 1 |
3 files changed, 49 insertions, 0 deletions
diff --git a/unstickpixels/PKGBUILD b/unstickpixels/PKGBUILD new file mode 100644 index 0000000..aca68cd --- /dev/null +++ b/unstickpixels/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> + +pkgname=unstickpixels +pkgver=2 +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) + + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + + +package() { + cd "$srcdir/$pkgname-$pkgver" + make install N=: DESTDIR="$pkgdir" +} + diff --git a/unstickpixels/unstickpixels.install b/unstickpixels/unstickpixels.install new file mode 100644 index 0000000..6e4ef40 --- /dev/null +++ b/unstickpixels/unstickpixels.install @@ -0,0 +1,20 @@ +_file="unstickpixels" + +infodir="usr/share/info" +file="${_file}.info" + + +post_install() { + [[ -x "usr/bin/install-info" ]] || return 0 + install-info -- "${infodir}/${file}" "${infodir}/dir" 2> /dev/null +} + +post_upgrade() { + post_install "$1" +} + +pre_remove() { + [[ -x "usr/bin/install-info" ]] || return 0 + install-info --delete -- "${infodir}/${file}" "${infodir}/dir" 2> /dev/null +} + diff --git a/unstickpixels/upload b/unstickpixels/upload new file mode 120000 index 0000000..1e7a8be --- /dev/null +++ b/unstickpixels/upload @@ -0,0 +1 @@ +../upload
\ No newline at end of file |