-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackaging.env
More file actions
35 lines (31 loc) · 1.29 KB
/
packaging.env
File metadata and controls
35 lines (31 loc) · 1.29 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
# Project: macbash
# File: packaging.env
# Purpose: Per-project config for packaging/render.sh
# Language: Shell (POSIX, sourced by render.sh)
#
# License: Apache-2.0
# Copyright: (c) 2025-2026 HYPERI PTY LIMITED
#
# This file is read by packaging/render.sh which substitutes these
# values into packaging/templates/* and writes packaging/dist/.
# See packaging/README.md.
PKG_NAME="macbash"
PKG_BINARY="macbash"
# R2 host where hyperi-ci uploads binaries on publish.
# Layout: ${PKG_DOWNLOAD_BASE}/v1.5.1/macbash-linux-amd64 etc.
PKG_DOWNLOAD_BASE="https://downloads.hyperi.io/macbash"
# Install destinations.
# $HOME and $env:LOCALAPPDATA are single-quoted so they stay literal in
# the rendered scripts and expand at install-time on the user's machine.
PKG_DEFAULT_DIR="/usr/local/bin"
PKG_USER_DIR='$HOME/.local/bin'
PKG_WINDOWS_DEFAULT_DIR='$env:LOCALAPPDATA\Programs\macbash'
# Release-template metadata — used by packaging/render-release.sh to render
# homebrew formula, nfpm.yaml, winget manifests, scoop manifest.
PKG_DESCRIPTION="Check bash scripts for macOS compatibility"
PKG_HOMEPAGE="https://github.com/hyperi-io/macbash"
PKG_LICENSE="Apache-2.0"
PKG_MAINTAINER="HyperI <support@hyperi.io>"
PKG_VENDOR="HYPERI PTY LIMITED"
PKG_GITHUB_REPO="hyperi-io/macbash"
PKG_BREW_CLASS="Macbash"