summaryrefslogtreecommitdiffstats
path: root/examples/packages/example_1/pkgA/pkg.toml
blob: 4d9d0bfaf0ccf8d5b177eec654c64a840b3081a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name              = "pkgA"
version           = "1.0.0"

[dependencies]
runtime = [ "pkgB =1.0.0" ]

[source]
url  = "http://somerandomthi.ng/foo/bar.tar.gz"
hash.type = "sha1"
hash.hash = "23465"

# overwrites
phases.install.script = '''
    echo Overridden install phase in package pkgA
'''