-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.sh
More file actions
67 lines (56 loc) · 1.64 KB
/
package.sh
File metadata and controls
67 lines (56 loc) · 1.64 KB
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
60
61
62
63
64
65
66
67
#!/usr/bin/env bash
#
# Basher package manifest for audit-report
# See: https://github.com/basherpm/basher
#
# This file defines metadata for the basher package manager.
# Basher will read this file when installing the package.
#
# Package name
# This is the command that will be available after installation
name="audit-report"
# Package version
# This should match your git tags
version="0.1.0"
# Package description
# A short, one-line description
description="Linux security auditing tool with auto-detection and multiple scanners"
# Homepage
# URL to the project homepage or repository
homepage="https://github.com/longcipher/audit-report"
# Author
# Package maintainer
author="longcipher"
# License
# SPDX license identifier
license="Apache-2.0"
# Bin files
# These are the executables that will be linked to ~/.basher/bin
# Format: source_path:target_name (target_name is optional, defaults to basename of source_path)
bins=(
"bin/audit-report"
)
# Dependencies (optional)
# List other basher packages this package depends on
# Format: username/package
# dependencies=(
# "username/other-package"
# )
# Runtime dependencies (optional)
# List system commands required by this package
# These are checked during installation
runtime_dependencies=(
"bash"
"curl"
)
# Post-install hook (optional)
# This function is called after installation is complete
# post_install() {
# echo "audit-report has been installed!"
# echo "Run 'audit-report --help' to get started."
# }
# Post-upgrade hook (optional)
# This function is called after upgrade is complete
# post_upgrade() {
# echo "audit-report has been upgraded to the latest version!"
# }