libxau: add missing dependency

This commit is contained in:
Denis Davydov 2016-06-23 08:45:20 +02:00
parent bb5dd49206
commit a4e59c2758

View file

@ -24,6 +24,7 @@
############################################################################## ##############################################################################
from spack import * from spack import *
class Libxau(Package): class Libxau(Package):
"""The libXau package contains a library implementing the X11 """The libXau package contains a library implementing the X11
Authorization Protocol. This is useful for restricting client Authorization Protocol. This is useful for restricting client
@ -34,11 +35,10 @@ class Libxau(Package):
version('1.0.8', '685f8abbffa6d145c0f930f00703b21b') version('1.0.8', '685f8abbffa6d145c0f930f00703b21b')
depends_on('xproto') depends_on('xproto')
depends_on('pkg-config')
def install(self, spec, prefix): def install(self, spec, prefix):
# FIXME: Modify the configure line to suit your build system here.
configure('--prefix=%s' % prefix) configure('--prefix=%s' % prefix)
# FIXME: Add logic to build and install here
make() make()
make("install") make("install")