Package Details: purescript-language-server 0.18.0-1

Git Clone URL: https://aur.archlinux.org/purescript-language-server.git (read-only, click to copy)
Package Base: purescript-language-server
Description: Node-based Language Server Protocol server for PureScript.
Upstream URL: https://github.com/nwolverson/purescript-language-server
Licenses: MIT
Submitter: samhh
Maintainer: samhh
Last Packager: samhh
Votes: 3
Popularity: 0.146663
First Submitted: 2021-05-11 21:23 (UTC)
Last Updated: 2024-02-12 15:19 (UTC)

Latest Comments

samhh commented on 2021-05-12 09:40 (UTC)

Thanks x2!

grawlinson commented on 2021-05-12 09:03 (UTC) (edited on 2021-05-12 09:03 (UTC) by grawlinson)

I see two possibilities;

1) You could manually extract it from the archive with tar,

prepare() {
  tar xf ${source[0]} path/to/LICENSE
}

package() {
  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" path/to/extracted/LICENSE
}

2) Add it to the source array as a separate download,

source=(# source-code.archive
       "LICENSE-$pkgver::https://raw.githubusercontent.com/user/repo/v$pkgver/LICENSE.md")

samhh commented on 2021-02-15 17:15 (UTC)

Anyone know how we could install the license without sacrificing the simplicity of this noextract installation approach?