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: "???"
This commit is contained in:
parent
69a6dfebde
commit
03b7c67fe5
16
neovim-remote/.SRCINFO
Normal file
16
neovim-remote/.SRCINFO
Normal file
@ -0,0 +1,16 @@
|
||||
pkgbase = neovim-remote
|
||||
pkgdesc = Support --remote and friends for Neovim
|
||||
pkgver = 2.4.0
|
||||
pkgrel = 3
|
||||
url = https://github.com/mhinz/neovim-remote
|
||||
arch = any
|
||||
license = MIT
|
||||
makedepends = git
|
||||
makedepends = python-setuptools
|
||||
depends = python-pynvim
|
||||
depends = python-psutil
|
||||
source = neovim-remote-2.4.0.tar.gz::https://github.com/mhinz/neovim-remote/archive/v2.4.0.tar.gz
|
||||
sha256sums = 4213b6eaad638aa20d8687362764843beb626e6e1a03bc3c8b3399bbfc11fbf7
|
||||
|
||||
pkgname = neovim-remote
|
||||
|
12
neovim-remote/.gitrepo
Normal file
12
neovim-remote/.gitrepo
Normal file
@ -0,0 +1,12 @@
|
||||
; DO NOT EDIT (unless you know what you are doing)
|
||||
;
|
||||
; This subdirectory is a git "subrepo", and this file is maintained by the
|
||||
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
|
||||
;
|
||||
[subrepo]
|
||||
remote = https://aur.archlinux.org/neovim-remote
|
||||
branch = master
|
||||
commit = 8577b3a497622e90efa4ea4da3b5bf12aae922f4
|
||||
parent = 69a6dfebdef8740cebf4d938b104e049b0bf806c
|
||||
method = merge
|
||||
cmdver = 0.4.3
|
25
neovim-remote/PKGBUILD
Normal file
25
neovim-remote/PKGBUILD
Normal file
@ -0,0 +1,25 @@
|
||||
# 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:
|
Loading…
Reference in New Issue
Block a user