summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libpciaccess/package.py
blob: 403bafbbd2ccc407390affdf5878ba27f86214ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from spack import *
import os.path

class Libpciaccess(Package):
    """Generic PCI access library."""

    homepage = "http://cgit.freedesktop.org/xorg/lib/libpciaccess/"
    url      = "http://cgit.freedesktop.org/xorg/lib/libpciaccess/"

    version('0.13.4', git='http://anongit.freedesktop.org/git/xorg/lib/libpciaccess.git',
            tag='libpciaccess-0.13.4')

    depends_on('autoconf')
    depends_on('libtool')

    def install(self, spec, prefix):
        # libpciaccess does not support OS X
        if spec.satisfies('=darwin-x86_64'):
            # create a dummy directory
            mkdir(prefix.lib)
            return

        from subprocess import call
        call(["./autogen.sh"])
        configure("--prefix=%s" % prefix)

        make()
        make("install")