archpkgs/neovim-remote/PKGBUILD
Gabriel Ebner 03b7c67fe5 git subrepo clone --branch=master https://aur.archlinux.org/neovim-remote
subrepo:
  subdir:   "neovim-remote"
  merged:   "8577b3a"
upstream:
  origin:   "https://aur.archlinux.org/neovim-remote"
  branch:   "master"
  commit:   "8577b3a"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
2021-01-01 21:22:50 +00:00

26 lines
770 B
Bash

# Maintainer: Hexchain Tong <i at hexchain dot org>
pkgname=neovim-remote
pkgver=2.4.0
pkgrel=3
pkgdesc="Support --remote and friends for Neovim"
arch=(any)
url="https://github.com/mhinz/neovim-remote"
license=('MIT')
depends=('python-pynvim' 'python-psutil')
makedepends=('git' 'python-setuptools')
source=("$pkgname-$pkgver.tar.gz::https://github.com/mhinz/neovim-remote/archive/v$pkgver.tar.gz")
sha256sums=('4213b6eaad638aa20d8687362764843beb626e6e1a03bc3c8b3399bbfc11fbf7')
build() {
cd "$srcdir/$pkgname-$pkgver"
python setup.py build
}
package() {
cd "$srcdir/$pkgname-$pkgver"
python setup.py install --optimize=1 --root="$pkgdir/" --prefix=/usr --skip-build
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
}
# vim:set ts=2 sw=2 et: