-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnfpm.yaml
33 lines (33 loc) · 820 Bytes
/
nfpm.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
# nfpm example config file
#
# check https://nfpm.goreleaser.com/configuration for detailed usage
#
name: "tgcli"
arch: "amd64"
platform: "linux"
version: "v0.6.0-alpha.1"
section: "default"
priority: "extra"
provides:
- tgcli
depends:
- libc6
maintainer: "Eray Erdin <[email protected]>"
description: |
A terminal application for Telegram.
It can send messages, photos, videos, audios, locations or polls with bots.
vendor: "Eray Erdin"
homepage: "http://github.com/erayerdin/tgcli"
license: "Apache-2.0"
contents:
- src: ./target/release/tgcli
dst: /usr/local/bin/tgcli
# overrides:
# rpm:
# scripts:
# preinstall: ./scripts/preinstall.sh
# postremove: ./scripts/postremove.sh
# deb:
# scripts:
# postinstall: ./scripts/postinstall.sh
# preremove: ./scripts/preremove.sh