blob: 6ae7bc28ac5bed8eb9a880fbf0f6e94e8d30d947 (
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
|
# Maintaner: Francesco Masala <mail@francescomasala.me>
# Contributor: Francesco Masala <mail@francescomasala.me>
pkgname=bottles
pkgver=51.5
pkgrel=1
epoch=2
pkgdesc='Easily manage wine and proton prefix'
arch=('x86_64')
url="https://github.com/bottlesdevs/Bottles"
license=('GPL3')
depends=(
'cabextract'
'dconf'
'fvs'
'gtk4'
'gtksourceview5'
'hicolor-icon-theme'
'icoextract'
'imagemagick'
'lib32-gnutls'
'libadwaita'
'libhandy'
'libportal-gtk4'
'p7zip'
'patool'
'python'
'python-gobject'
'python-markdown'
'python-orjson'
'python-pathvalidate'
'python-pillow'
'python-pycurl'
'python-requests'
'python-steamgriddb'
'python-yaml'
'webkit2gtk'
'xorg-xdpyinfo'
'vkbasalt-cli')
optdepends=(
'gamemode'
'gvfs'
'lib32-vkd3d'
'lib32-vulkan-icd-loader'
'vkd3d'
'wine'
'vulkan-icd-loader')
makedepends=('meson' 'ninja' 'blueprint-compiler')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bottlesdevs/Bottles/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('f529d4cc0150648cec8cd9a1d98c1fb62f2739fe24d47264749570e83c2ea2ef')
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
}
|