summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2df6c1661ccc31b31badd97ddeac05b32df4d6fc (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
# Maintainer: Nixuge

pkgname=modrinth-app-git
_gitname=theseus
pkgver=r178.6d9d403
pkgrel=1
pkgdesc='Official Modrinth launcher. Open-source, built by the community, for the community.'
url=https://github.com/modrinth/theseus
arch=(x86_64)
license=(GPL3)
conflicts=('modrinth-app')
provides=('modrinth-app')
depends=('webkit2gtk')
makedepends=('cargo-tauri' 'yarn' 'pnpm' 'git')
options=(!lto) # Enable devtools (thanks @FabioLolix)
source=("git+https://github.com/modrinth/theseus")
sha256sums=('SKIP')


pkgver() {
	cd "${srcdir}/${_gitname}"
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}

build() {
	cd "${srcdir}/${_gitname}/theseus_gui/"

	# Bundle the deb only as it takes no time (unlike the appimage)
	# & contains every folder at their right place ready to go
	sed -i -E \
		"s|\"targets\": \"all\"|\"targets\": \"deb\"|" \
		"src-tauri/tauri.conf.json"

	yarn install
	cargo tauri build
}

package() {
	# Grab the folder name (has the version embeeded in it)
	folder=$(find . -type d -name "modrinth-app*") 2>/dev/null

	# Then just copy everything from the deb bundle folder
	cp -r "${folder}/data/usr/" \
		"${pkgdir}"
}