blob: 84985e2a3b56ab0495aedd45ef765822333c22c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
pkgname=unstickpixels
pkgver=1
pkgrel=1
pkgdesc='Screen loop to try to unstick stuck pixels'
arch=(any)
url='https://github.com/maandree/unstickpixels'
license=(GPL3)
depends=(python3 coreutils)
makedepends=(texinfo gzip)
source=("${url}/archive/${pkgver}.tar.gz")
sha256sums=(78b2c47f8f4819624c310e5fc790d9a40055e0811d532a0d5db9a22b9c763299)
build() {
cd "${srcdir}/unstickpixels-${pkgver}"
make
}
package() {
cd "${srcdir}/unstickpixels-${pkgver}"
make DESTDIR="${pkgdir}" install
}
|