summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 296f43baa6d7365d792d1edde9cde9c39b258c77 (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
# Maintainer: Nova King <technobaboo@proton.me>

pkgname="stardust-xr-telescope"
pkgver="0.1.0"
pkgrel="2"
pkgdesc="See the stars! Simple Stardust XR overlay setup."
arch=("any")
url="https://github.com/StardustXR/telescope"
license=("MIT")
depends=(
	"bash"
	"stardust-xr-server"
	"stardust-xr-flatland"
	"stardust-xr-gravity"
	"stardust-xr-protostar"
	"stardust-xr-black-hole"
	"xwayland-satellite"
)
makedepends=(
	"git"
)
source=("git+https://github.com/StardustXR/telescope.git")
sha256sums=("SKIP")
OPTIONS=(!debug)

package() {
	cd "${srcdir}/telescope"
	install -Dm755 "scripts/telescope" "$pkgdir/usr/bin/telescope"
	install -Dm755 "scripts/_telescope_startup" "$pkgdir/usr/bin/_telescope_startup"
	install -Dm644 \
		LICENSE \
		"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
	install -Dm644 \
		README.md \
		"$pkgdir/usr/share/doc/$pkgname/README.md"
}