summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: dca4be844705175181219948318ce0daf360bd63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Moritz Luedecke <ritze@skweez.net>
pkgname=dfp
pkgver=20160409
pkgrel=1
pkgdesc="df with progress bar in pacman style"
url="https://github.com/ritze/dfp"
license=('GPL')
arch=('any')
makedepends=('git')
depends=('bash' 'pbar')
source=("${pkgname}::git+https://github.com/ritze/dfp.git#branch=master")
md5sums=('SKIP')

pkgver() {
	cd "$pkgname"
	git show -s --format="%ci" HEAD | sed -e 's/-//g' -e 's/ .*//'
}

package() {
	install -Dm755 "$srcdir/$pkgname/dfp" "$pkgdir/usr/bin/dfp"
}