13 lines
379 B
Python
13 lines
379 B
Python
from spack import *
|
|
|
|
class Unibilium(Package):
|
|
"""A terminfo parsing library"""
|
|
homepage = "https://github.com/mauke/unibilium"
|
|
url = "https://github.com/mauke/unibilium/archive/v1.2.0.tar.gz"
|
|
|
|
version('1.2.0', '9b1c97839a880a373da6c097443b43c4')
|
|
|
|
def install(self, spec, prefix):
|
|
make("PREFIX="+prefix)
|
|
make("install", "PREFIX="+prefix)
|