blob: 1228c98ddb03e23263054a82c5703cdf7172ce9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Carsten König <carstenkoenig92@gmail.com>
pkgname=elasticvue-bin
options=('!debug')
pkgver=1.4.0
pkgrel=2
url="https://github.com/cars10/elasticvue"
license=('MIT')
arch=('x86_64')
source=(
"https://github.com/cars10/elasticvue/releases/download/v${pkgver}/elasticvue"
"https://raw.githubusercontent.com/cars10/elasticvue/refs/heads/master/src/assets/images/logo/blue_96.png"
"local://elasticvue.desktop"
)
sha256sums=('9b9df30014f0ee12c024cc4cb79058e258a8fbde1c54522a406e59af5fd1a5d9'
'81ea0848c8e3acaa6d1a45725494c3a9117517fda69dac3cda2e80a6e8af0e71'
'd5a7e0fed82f18ee51dac0258ba5070f145a18c4aa3235c0803afe1351043352')
package() {
install -D -m644 blue_96.png -T "${pkgdir}/usr/share/pixmaps/elasticvue.png"
install -D -m644 elasticvue.desktop -T "${pkgdir}/usr/share/applications/elasticvue.desktop"
install -D -m755 elasticvue -T "${pkgdir}/usr/bin/elasticvue"
}
|