-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpeckish.yaml
59 lines (52 loc) · 1.22 KB
/
peckish.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
pipeline: false
metadata:
name: "boxxy"
version: "0.6.3-1"
description: "boxxy puts bad Linux applications in a box!"
author: "amy"
arch: "amd64"
license: "Apache-2.0"
input:
name: "boxxy release binary"
type: "file"
paths:
- "./target/debug/boxxy"
output:
- name: "boxxy release binary"
type: "tarball"
path: "./release/boxxy.tar"
injections:
- type: "move"
src: "/target/debug/boxxy"
dest: "/boxxy"
- name: "boxxy arch package"
type: "arch"
path: "./release/boxxy.arch.pkg.tar"
injections:
- type: "move"
src: "/target/debug/boxxy"
dest: "/usr/bin/boxxy"
- type: "delete"
path: "/target"
- name: "boxxy debian package"
type: "deb"
path: "./release/boxxy.deb"
depends: "libc6"
injections:
- type: "move"
src: "/target/debug/boxxy"
dest: "/usr/bin/boxxy"
- name: "boxxy release binary"
type: "file"
path: "./release"
injections:
- type: "move"
src: "/target/debug/boxxy"
dest: "/"
- name: "boxxy rpm package"
type: "rpm"
path: "./release/boxxy.rpm"
injections:
- type: "move"
src: "/target/debug/boxxy"
dest: "/usr/bin/boxxy"