summaryrefslogtreecommitdiff
path: root/var/spack/packages/automake/package.py
blob: 9115822730eb531141512c6f16c2ac173108be8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from spack import *

class Automake(Package):
    """Automake -- make file builder part of autotools"""
    homepage = "http://www.gnu.org/software/automake/"
    url      = "http://ftp.gnu.org/gnu/automake/automake-1.14.tar.gz"

    version('1.14.1', 'd052a3e884631b9c7892f2efce542d75')

    depends_on('autoconf')

    def install(self, spec, prefix):
        configure("--prefix=%s" % prefix)

        make()
        make("install")