summaryrefslogtreecommitdiffstats
path: root/examples/packages/example_1/pkgB/pkg.toml
blob: 14a062ad9c46180845ce534231c91d583201162f (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"

[source]
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/
'''