libxau: add missing dependency
This commit is contained in:
parent
bb5dd49206
commit
a4e59c2758
1 changed files with 2 additions and 2 deletions
|
@ -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")
|
||||||
|
|
Loading…
Reference in a new issue