mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-16 03:02:47 +02:00
39 lines
890 B
Plaintext
39 lines
890 B
Plaintext
# Contributor: Matthias Ahouansou <matthias@ahouansou.cz>
|
|
# Maintainer: Matthias Ahouansou <matthias@ahouansou.cz>
|
|
pkgname=vinegar
|
|
pkgver=1.7.5
|
|
pkgrel=0
|
|
pkgdesc="An open-source, minimal, configurable, fast bootstrapper for running Roblox on Linux"
|
|
url="https://vinegarhq.org"
|
|
arch="x86_64" # Roblox only has binaries for x86_64 on windows
|
|
license="GPL-3.0-only"
|
|
depends="cmd:wine"
|
|
makedepends="
|
|
go
|
|
make
|
|
mesa-dev
|
|
libxkbcommon-dev
|
|
libxcursor-dev
|
|
wayland-dev
|
|
vulkan-loader-dev
|
|
vulkan-validation-layers-dev
|
|
"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/vinegarhq/vinegar/archive/refs/tags/v$pkgver.tar.gz"
|
|
options="net"
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make tests
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
796c053e317a25f3de69d175061a964fd69c2fe63be9c6c3a62593922e796cc8db91f3f5df62e2dc1015452e99e3854833ef70cd3cabc27aa72287a7c9df834f vinegar-1.7.5.tar.gz
|
|
"
|