blob: 76b1e3df37c0d70d82fe02c9f7b56a570f9c2f17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Erica Marigold <hi@devcomp.xyz>
pkgname=rojo-bin
pkgver=7.4.4
pkgrel=1
pkgdesc="[Precompiled Binaries] Rojo enables Roblox developers to use professional-grade software engineering tools"
arch=(x86_64)
conflicts=(rojo rojo-git)
url="https://rojo.space"
license=(MPL2)
depends=(gcc-libs glibc)
provides=(rojo)
source_x86_64=("https://github.com/rojo-rbx/rojo/releases/download/v$pkgver/rojo-$pkgver-linux-x86_64.zip")
sha256sums_x86_64=('784e2cd42af3d565826c4910df94f45080fc7ed6206eb6808dbc79b516323652')
package() {
install -Dm755 -t "$pkgdir/usr/bin" rojo
}
|