blob: 72a3203731d2e63f0ee3f4acef054d6b2832d400 (
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
|
# Maintainer: Stanisław Jasiewicz <stjasiewicz@protonmail.com>
pkgname=nwscript-code
pkgver=1.6.1
pkgrel=1
pkgdesc="Setup for a NWScript IDE assembled from VSC and various development tools"
arch=('any')
url="https://gitlab.com/Taro94/nwscript-code/"
license=('GPL')
depends=('code' 'astyle' 'neverwinter.nim' 'nasher' 'nssnippets-bin' 'nssdefinitions-bin')
optdepends=('wine')
source=('https://gitlab.com/Taro94/nwscript-code/-/archive/1.6.1/nwscript-code-1.6.1.tar.gz')
md5sums=('ee556c383799aa778ccd40aadd51569d')
options=(!strip)
package() {
cd nwscript-code-1.6.1
install -Dm 755 "nwscript-code" -t "$pkgdir/usr/bin"
install -Dm 755 "nsshotreload" -t "$pkgdir/usr/bin"
install -Dm 755 "default_config.ini" -t "$pkgdir/usr/share/nwscript-code"
install -Dm 755 "tasks.json" -t "$pkgdir/usr/share/nwscript-code"
install -Dm 755 "settings.json" -t "$pkgdir/usr/share/nwscript-code"
install -Dm 755 "keybindings.json" -t "$pkgdir/usr/share/nwscript-code"
#install -Dm 755 "extensions" -t "$pkgdir/usr/share/nwscript-code"
cp -r "extensions" "$pkgdir/usr/share/nwscript-code"
}
|