pile of dependencies for neovim, including luajit and libuv

This commit is contained in:
Tom Scogland
2016-05-06 15:33:26 -07:00
parent 407920e40a
commit 22afc6dadd
6 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from spack import *
class Libvterm(Package):
"""An abstract library implementation of a terminal emulator"""
homepage = "http://www.leonerd.org.uk/code/libvterm/"
url = "http://www.leonerd.org.uk/code/libvterm/libvterm-0+bzr681.tar.gz"
version('681', '7a4325a7350b7092245c04e8ee185ac3')
def install(self, spec, prefix):
make()
make("install", "PREFIX=" + prefix)