blob: b97f39eff76be359db8794f80e799e249303fd86 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Maintaner: Francesco Masala <mail@francescomasala.me>
# Contributor: lotation <xlapsiu@gmail.com>
pkgname=bottles
pkgver=51.15
pkgrel=2
epoch=2
pkgdesc='Easily manage wine and proton prefix'
arch=(any)
url="https://github.com/bottlesdevs/Bottles"
license=('GPL-3.0-only')
depends=(
'cabextract'
'dconf'
'gtk4'
'gtksourceview5'
'hicolor-icon-theme'
'icoextract'
'imagemagick'
'libadwaita'
'libportal-gtk4'
'p7zip'
'patool'
'python'
'python-chardet'
'python-fvs'
'python-gobject'
'python-markdown'
'python-orjson'
'python-pathvalidate'
'python-pycurl'
'python-requests'
'python-steamgriddb'
'python-yaml'
'webkit2gtk'
'xorg-xdpyinfo'
'vkbasalt-cli'
)
optdepends=(
'gamemode'
'gvfs'
'lib32-gnutls'
'lib32-vkd3d'
'lib32-vulkan-icd-loader'
'vkd3d'
'vulkan-icd-loader'
'wine'
)
makedepends=('meson' 'ninja' 'blueprint-compiler')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bottlesdevs/Bottles/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('f31cc20c10242a1e4df462de28a353429154e2f62e7ed0a36b62740fecb47360')
build() {
if [[ -d Bottles ]]; then
rm -rf Bottles
fi;
mv Bottles*/ Bottles/
cd "Bottles"
meson --prefix='/usr' build
ninja -C build
}
package() {
cd "Bottles"
DESTDIR="${pkgdir}" ninja -C build install
}
|