blob: a6d1bc54366b70d4742810be02811cacde0d0eac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: mklan <me@klanm.at>
pkgname=hyproled-git
pkgver=0.1.0
pkgrel=1
pkgdesc="A hyprland shader utility to prevent OLED burn in."
arch=('any')
url="https://github.com/mklan/hyproled"
license=('BSD 3')
depends=('hyprland' 'bash')
makedepends=('git')
source=("git+https://github.com/mklan/hyproled.git")
sha256sums=('SKIP')
package() {
cd "$srcdir/$pkgname-$pkgver"
install -Dm755 hyproled/hyproled "$pkgdir/usr/bin/hyproled"
install -Dm644 hyproled/LICENSE "$pkgdir/usr/share/licenses/hyproled/LICENSE"
}
|