blob: 6d43f8e48a2bde9a070b8041ead084322c93fc18 (
plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Maintainer: Raphael Nestler <raphael.nestler@gmail.com>
# Contributor: Sampson Crowley <sampsonsprojects@gmail.com>
# Contributor: Rhys Kenwell <redrield+aur@gmail.com>
# Github Contributors: https://github.com/SampsonCrowley/arch_packages/contributors.md
pkgname=heroku-cli
pkgver=7.62.0
pkgrel=1
_commit_id="13db7c5e684c5c44682a5115b9a29632a46fb69c"
pkgdesc="CLI to manage Heroku apps and services with forced auto-update removed"
arch=('any')
url="https://devcenter.heroku.com/articles/heroku-cli"
license=('custom' 'ISC')
depends=('nodejs')
makedepends=('yarn' 'perl' 'git' 'npm')
optdepends=('git: Deploying to Heroku')
conflicts=('heroku-cli-bin' 'heroku-client-standalone' 'heroku-toolbelt' 'ruby-heroku')
source=("git+https://github.com/heroku/cli.git#commit=${_commit_id}")
sha256sums=('SKIP')
sha512sums=('SKIP')
options=('!strip')
provides=('heroku' 'heroku-cli')
_append_path() {
case ":$PATH:" in
*:"$1":*) ;;
*)
PATH="${PATH:+$PATH:}$1"
;;
esac
}
prepare() {
# Set path to perl scriptdirs if they exist
# https://wiki.archlinux.org/index.php/Perl_Policy#Binaries_and_scripts
# Added /usr/bin/*_perl dirs for scripts
[ -d /usr/bin/site_perl ] && _append_path '/usr/bin/site_perl'
[ -d /usr/bin/vendor_perl ] && _append_path '/usr/bin/vendor_perl'
[ -d /usr/bin/core_perl ] && _append_path '/usr/bin/core_perl'
export PATH
pushd "$srcdir"
pushd "cli"
pushd packages/cli
# remove forced auto-update plugin
sed -i "/oclif\/plugin-update/d" ./package.json
# install dependencies, must be done with yarn as of 7.60
yarn install
# create base package
yarn pack --filename "heroku-v$VERSION-linux-x64.tar.xz"
tar -xzvf "heroku-v$VERSION-linux-x64.tar.xz" -C "$srcdir/"
popd
popd
# final installation
mv package heroku
pushd heroku
yarn --prod
popd
# unneeded compilation files
for file in *; do
if [[ "$file" = "heroku" ]]; then
continue
else
rm -rf "$file"
fi
done
popd
}
package() {
install -dm755 "$pkgdir/usr/lib/heroku"
install -dm755 "$pkgdir/usr/bin"
install -dm755 "$pkgdir/usr/share/licenses/$pkgname"
cp -a "$srcdir/heroku" "$pkgdir/usr/lib"
# completions
local autocompletedir="$srcdir/heroku/node_modules/@heroku-cli/plugin-autocomplete/autocomplete"
install -Dm644 "$autocompletedir/bash/heroku.bash" "$pkgdir/usr/share/bash-completion/completions/heroku"
install -Dm644 "$autocompletedir/zsh/_heroku" "$pkgdir/usr/share/zsh/site-functions/_heroku"
ln -sf "../../../lib/heroku/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
ln -sf "../lib/heroku/bin/run" "$pkgdir/usr/bin/heroku"
# Remove empty directories
find "${pkgdir}" -type d -empty -delete
}
|