summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/e/package.py
blob: 76c6b64c7fa24fefa32538ede954460c6a3ee02b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
from spack import *

class E(Package):
    """Simple package with no dependencies"""

    homepage = "http://www.example.com"
    url      = "http://www.example.com/e-1.0.tar.gz"

    version('1.0', '0123456789abcdef0123456789abcdef')

    def install(self, spec, prefix):
        pass