23 lines
472 B
Bash
23 lines
472 B
Bash
# Template file for 'vis-git'
|
|
pkgname=vis-git
|
|
version=20150630
|
|
revision=1
|
|
hostmakedepends="git"
|
|
makedepends="ncurses-devel"
|
|
short_desc="A vim like text editor"
|
|
maintainer="Eivind Uggedal <eivind@uggedal.com>"
|
|
license="ISC"
|
|
homepage="http://repo.or.cz/w/vis.git"
|
|
|
|
do_fetch() {
|
|
git clone git://repo.or.cz/vis.git ${pkgname}-${version}
|
|
}
|
|
do_build() {
|
|
make CC=$CC ${makejobs}
|
|
}
|
|
do_install() {
|
|
make PREFIX=/usr DESTDIR=${DESTDIR} install
|
|
vlicense LICENSE
|
|
vdoc README.md
|
|
}
|