blob: 08c40074e3b054d50167c7708d8d9080d1071478 (
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
|
# Maintainer: Ben Aaron Goldberg <ben@benaaron.dev>
pkgname=poki-launcher-bin
pkgver=0.8.0
pkgrel=1
pkgdesc="An application launcher that shows recently used apps first"
arch=('x86_64')
url="https://sr.ht/~zethra/poki-launcher/"
license=('GPL3')
provides=('poki-launcher')
conflicts=('poki-launcher')
source=("poki-launcher-src-$pkgver.tar.gz::https://git.sr.ht/~zethra/poki-launcher/archive/$pkgver.tar.gz"
"poki-launcher-bin-$pkgver.gz::https://git.sr.ht/~zethra/poki-launcher/refs/download/$pkgver/poki-launcher-$pkgver-x86_64-unknown-linux-gnu.gz")
depends=('qt5-declarative')
makedepends=('rust' 'cargo')
sha256sums=('095ca8b26728f4324c0d78938a63fc2bc8c90a5c1434e0c01d3c6b45b8ae7c91'
'71addae0fba0b6d498a67aeb89f741d7ef141d0435a20ca8802bdfa3e3a19a0a')
realname=poki-launcher
package() {
install -Dm755 "poki-launcher-bin-$pkgver" "$pkgdir/usr/bin/poki-launcher"
cd "$realname-$pkgver"
install -Dm644 "README.md" "$pkgdir/usr/share/doc/$realname/README.md"
install -Dm644 "poki-launcher.hjson" "$pkgdir/usr/share/doc/$realname/examples/poki-launcher.hjson"
}
|