blob: fe29960a628357c1c49cb75412276143300a9336 (
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
|
# Maintainer: Mikescher <aur@mikescher.com>
# Repo: https://github.com/Mikescher/better-docker-ps
pkgname=dops-bin
pkgver=1.7
pkgrel=1
pkgdesc="A replacement for the default docker-ps that tries really hard to fit into the width of your terminal."
url="https://github.com/Mikescher/better-docker-ps"
license=('Apache')
arch=('x86_64')
_binary="dops_linux-amd64"
source=(
"https://github.com/Mikescher/better-docker-ps/releases/download/v${pkgver}/${_binary}"
)
_bin_sha='48addb268291151b0dd6752675829dc3ba81523d1515d6094ccf18269e26dfd6'
sha256sums=(
"$_bin_sha"
)
package()
{
install -D -m755 "$srcdir/${_binary}" "${pkgdir}/usr/bin/dops"
}
|