-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPKGBUILD-BIN
More file actions
23 lines (21 loc) · 850 Bytes
/
PKGBUILD-BIN
File metadata and controls
23 lines (21 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pkgname=rustmius-bin
pkgver=1.6.1
pkgrel=1
pkgdesc="Full local Termius alternative for Linux"
arch=('x86_64')
url="https://github.com/Cleboost/Rustmius"
license=('MIT')
depends=('libadwaita' 'gtk4')
source=(
"rustmius-$pkgver::$url/releases/download/v$pkgver/rustmius"
"rustmius-$pkgver.desktop::$url/raw/v$pkgver/rustmius.desktop"
"rustmius-$pkgver.png::$url/raw/v$pkgver/rustmius.png"
"README-$pkgver.md::$url/raw/v$pkgver/README.md"
)
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP')
package() {
install -Dm755 "rustmius-$pkgver" "$pkgdir/usr/bin/rustmius"
install -Dm644 rustmius-$pkgver.desktop "$pkgdir/usr/share/applications/rustmius.desktop"
install -Dm644 rustmius-$pkgver.png "$pkgdir/usr/share/icons/hicolor/512x512/apps/rustmius.png"
install -Dm644 README-$pkgver.md "$pkgdir/usr/share/doc/rustmius/README.md"
}