blob: 9cc0c1adaf4db5a4708436e33b1ab1e488678738 (
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
|
# Maintainer: Antti <antti@antti.codes>
pkgname=modrinth-app-bin
pkgver=0.5.3
pkgrel=2
pkgdesc='An unique, open source launcher that allows you to play your favorite mods, and keep them up to date, all in one neat little package.'
url='https://modrinth.com/app'
arch=('x86_64')
license=('GPL3')
depends=(
# tauri deps
'openssl' 'dbus' 'freetype2' 'gtk3' 'libappindicator-gtk3' 'librsvg' 'libsoup' 'webkit2gtk'
# minecraft deps
'libgl' 'libpulse' 'libx11' 'libxcursor' 'libxext' 'libxxf86vm'
)
optdepends=(
'xorg-xrandr: for older minecraft versions'
)
provides=('modrinth-app')
conflicts=('modrinth-app' 'modrinth-app-git')
source=("https://launcher-files.modrinth.com/versions/${pkgver}/linux/modrinth-app_${pkgver}_amd64.deb")
sha256sums=('06c3f80362eaf17695dbb515eb9d40436d46e635c6eb0176076f9bab40bc9782')
build() {
cd "$srcdir/"
tar xf data.tar.gz
}
package() {
cp -r "${srcdir}/usr/" "${pkgdir}"
}
|