blob: c6c9eda104d6c4aec69913a7d28319a121c47964 (
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
|
# Maintainer: Mikescher <aur@mikescher.com>
# Repo: https://github.com/Mikescher/better-docker-ps
pkgname=dops-git
pkgver=1.12
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')
makedepends=('go' 'git')
arch=('any')
source=("$pkgname::git+https://github.com/Mikescher/better-docker-ps")
sha256sums=('SKIP')
build() {
cd "$pkgname"
go build -o dops cmd/dops/main.go
}
package()
{
install -D -m755 "$pkgname/dops" "${pkgdir}/usr/bin/dops"
}
|