blob: ef68cd64a2885cff521869c883df50de53b8a16d (
plain)
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
26
27
28
29
|
# Maintainer: Ossian Mapes <self@ossian.dev>
_pkgname=lutgen-studio
pkgname=$_pkgname-bin
pkgver=0.3.0
pkgrel=1
pkgdesc="Offical GUI for Lutgen, the best way to apply popular colorschemes to any image or wallpaper!"
url="https://github.com/ozwaldorf/lutgen-rs"
license=("MIT")
arch=("x86_64")
provides=("lutgen-studio")
conflicts=("lutgen-studio")
source=("LICENSE" "https://github.com/ozwaldorf/lutgen-rs/releases/download/$_pkgname-v$pkgver/$_pkgname-v$pkgver-x86_64-unknown-linux-gnu")
sha256sums=('f007afaeba32931337b4be155b3f8094cce9248dece43ebe53bf2579fe26a330'
'2f3b5276b9b646907798cc0d7ec778ae4ff4a03264c55e021bae935ea0a501b6')
depends=(
'libxkbcommon'
'libxcb'
'wayland'
'openssl'
)
package() {
mv $_pkgname-v$pkgver-x86_64-unknown-linux-gnu $_pkgname
install -Dm755 $_pkgname -t "$pkgdir/usr/bin"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|