-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Hi,
I've prepared a PKGBUILD file for arch linux, in case you want to add it to the AUR:
pkgname=gnvim-git
pkgver=9b88b27
pkgrel=1
pkgdesc='A GTK3 GUI for neovim.'
arch=('i686' 'x86_64')
url='https://github.com/realh/gnvim'
license=('GPL3')
depends=('gtkmm' 'msgpack-c')
makedepends=('git' 'autoconf' 'make')
conflicts=('gnvim')
source=(
"${pkgname}::git+https://github.com/realh/gnvim"
)
sha256sums=(
'SKIP'
)
provides=("gnvim=${pkgver}")
pkgver() {
cd "$srcdir/${pkgname}"
git rev-parse --short HEAD
}
build() {
cd "$srcdir/${pkgname}"
autoreconf -i
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/${pkgname}"
make DESTDIR="$pkgdir/" install
}
Reactions are currently unavailable