blob: f36d13d88823e03c1f08a60a8ad79ae6f3059ab2 (
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
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: Josesk Volpe <joseskvolpe at gmail dot com>
# Co-Maintainer: Melroy van den Berg <melroy at melroy dot org>
# Contributor: yochananmarqos <mark dot wagie at tutanota dot com>
pkgname=winegui
pkgver=2.7.0
pkgrel=1
pkgdesc="A user-friendly WINE graphical interface (build from source)"
arch=('x86_64')
url="https://gitlab.melroy.org/melroy/winegui"
license=('AGPL3')
depends=(
'cabextract'
'gtkmm3'
'p7zip'
'unzip'
'wget'
'wine'
# namcap claims some dependencies aren't needed, but they're infact used on the source-code as a terminal command
)
optdepends=(
'ccache: Speeds up rebuilds'
'graphviz'
)
makedepends=(
'cmake'
'git'
'json-glib'
'ninja'
)
source=("https://winegui.melroy.org/downloads/WineGUI-Source-v$pkgver.tar.gz")
sha256sums=('1be098b7259cd60e3eee72f4cb4ea3dfad4c51db4034ba03fb03865d2e9d473a')
build() {
cmake -GNinja -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_BUILD_TYPE=Release -B build_prod
cmake --build ./build_prod --config Release
}
package() {
DESTDIR="$pkgdir" cmake --install build_prod
}
|