summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b16c4c12b57824430ed345ae525bd29cf8acf0d2 (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: espritlibre <e-mail>
_pkgname=zsh-timer
pkgname=zsh-timer-git
pkgver=r7156.06753e814
pkgrel=1
pkgdesc="This plugin allows to display command's execution time in a very nonintrusive way."
arch=(any)
url="https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/timer"
license=('unknown')
depends=("zsh")
makedepends=("git")
install="${pkgname}.install"
source=(git+https://github.com/ohmyzsh/ohmyzsh.git)
sha256sums=('SKIP')

pkgver() {
  cd "${srcdir}/ohmyzsh/plugins/timer/"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
  install -d "${pkgdir}/usr/share/zsh/plugins/${_pkgname}"
  install -Dm644 "${srcdir}/ohmyzsh/plugins/timer/README.md" \
        "${pkgdir}/usr/share/zsh/plugins/${_pkgname}"

  install -d "${pkgdir}/usr/share/zsh/plugins/${_pkgname}"
  install -Dm644 "${srcdir}/ohmyzsh/plugins/timer/timer.plugin.zsh" \
        "${pkgdir}/usr/share/zsh/plugins/${_pkgname}"
}