blob: 655c8cdb21a5fda3eb7400fccfdaed3a6300ddea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
pkgname=startwine
pkgver=406
pkgrel=1
pkgdesc="Is a Windows application launcher for GNU/Linux operating systems. Includes many features, extensions, and fixes to improve performance, visuals, and usability."
arch=('x86_64')
url="https://github.com/RusNor/StartWine-Launcher"
license=('GPL')
depends=('yad' 'fuse' 'curl')
source=(
"https://github.com/RusNor/StartWine-Launcher/releases/download/StartWine_v$pkgver/StartWine_v$pkgver"
"StartWine.desktop"
"StartWine.png"
)
sha256sums=("SKIP" "SKIP" "SKIP")
package() {
install -Dm755 "StartWine_v$pkgver" "$pkgdir/usr/bin/$pkgname"
install -Dm644 "StartWine.desktop" -t "$pkgdir/usr/share/applications"
install -Dm644 "StartWine.png" -t "$pkgdir/usr/share/pixmaps"
}
|