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

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

# overwrites
[phases]

build.script = '''
    echo Overridden build phase in package pkgB

    mkdir -p /outputs/
    touch /outputs/pkgB-1.0.0.txt
    ls /outputs/
'''