diff options
| -rw-r--r-- | efm-langserver/.SRCINFO | 14 | ||||
| -rw-r--r-- | efm-langserver/PKGBUILD | 36 |
2 files changed, 0 insertions, 50 deletions
diff --git a/efm-langserver/.SRCINFO b/efm-langserver/.SRCINFO deleted file mode 100644 index bd3b40d..0000000 --- a/efm-langserver/.SRCINFO +++ /dev/null | |||
| @@ -1,14 +0,0 @@ | |||
| 1 | pkgbase = efm-langserver | ||
| 2 | pkgdesc = General purpose Language Server | ||
| 3 | pkgver = 0.0.46 | ||
| 4 | pkgrel = 1 | ||
| 5 | url = https://github.com/mattn/efm-langserver | ||
| 6 | arch = x86_64 | ||
| 7 | license = MIT | ||
| 8 | makedepends = go | ||
| 9 | depends = glibc | ||
| 10 | optdepends = ctags: for "go to definition" requests | ||
| 11 | source = https://github.com/mattn/efm-langserver/archive/v0.0.46/efm-langserver-v0.0.46.tar.gz | ||
| 12 | sha256sums = ef81abeadecdde755a80ad34ed089c5bd42bd84b82886666fc699dfb3ec03115 | ||
| 13 | |||
| 14 | pkgname = efm-langserver | ||
diff --git a/efm-langserver/PKGBUILD b/efm-langserver/PKGBUILD deleted file mode 100644 index aeff5d5..0000000 --- a/efm-langserver/PKGBUILD +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 1 | # Maintainer: Yigit Sever <yigit at yigitsever dot com> | ||
| 2 | # Contributor: Daniel M. Capella <polyzen@archlinux.org> | ||
| 3 | # Contributor: dianlujitao <dianlujitao at gmail dot com> | ||
| 4 | |||
| 5 | pkgname=efm-langserver | ||
| 6 | pkgver=0.0.46 | ||
| 7 | pkgrel=1 | ||
| 8 | pkgdesc='General purpose Language Server' | ||
| 9 | arch=('x86_64') | ||
| 10 | url=https://github.com/mattn/efm-langserver | ||
| 11 | license=('MIT') | ||
| 12 | depends=('glibc') | ||
| 13 | makedepends=('go') | ||
| 14 | optdepends=('ctags: for "go to definition" requests') | ||
| 15 | source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz") | ||
| 16 | sha256sums=('ef81abeadecdde755a80ad34ed089c5bd42bd84b82886666fc699dfb3ec03115') | ||
| 17 | |||
| 18 | build() { | ||
| 19 | cd $pkgname-$pkgver | ||
| 20 | export CGO_CPPFLAGS="$CPPFLAGS" | ||
| 21 | export CGO_CFLAGS="$CFLAGS" | ||
| 22 | export CGO_CXXFLAGS="$CXXFLAGS" | ||
| 23 | export CGO_LDFLAGS="$LDFLAGS" | ||
| 24 | export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw" | ||
| 25 | go build . | ||
| 26 | } | ||
| 27 | |||
| 28 | check() { | ||
| 29 | cd $pkgname-$pkgver | ||
| 30 | go test -v ./... | ||
| 31 | } | ||
| 32 | |||
| 33 | package() { | ||
| 34 | cd $pkgname-$pkgver | ||
| 35 | install -Dt "$pkgdir"/usr/bin efm-langserver | ||
| 36 | } | ||
