summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f7deddad1fb19e131c3499d9d0d26d3b4fe18e50 (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
# Maintainer: TwoTXH <twotxh at gmail dot com>
pkgbase=poryscript-git
pkgname=poryscript
pkgver=2.1.0
pkgrel=1
pkgdesc="High-level scripting language for gen 3 pokemon decompilation projects"  
arch=("any")
url="https://www.huderlem.com/poryscript-playground/"
license=('MIT')
makedepends=("go")
source=("git+https://github.com/huderlem/poryscript")
noextract=()
md5sums=("SKIP") #autofill using updpkgsums

build() {
  cd "$pkgname"
  go build
}

package() {
  cd "$pkgname"
  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
  install -Dm755 $pkgname "${pkgdir}"/usr/bin/$pkgname
}