summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a2056a70ae6b5043f2a628492d560b8f7956834a (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
#!/usr/bin/env bash
# Maintainer: Hunter Peavey < printf "dev@die.bots" | sed "s/die.bots/krathalan.net/g" >
# shellcheck disable=SC2034
# shellcheck disable=SC2154

# General package information
pkgname=sunwait-git
pkgver=r24.102cb41
pkgrel=1
pkgdesc="Sunwait calculates sunrise or sunset times with civil, nautical, astronomical and custom twilights, for use with Windows Task Scheduler or 'cron' on Linux. Git version with new Github upstream."
url="https://github.com/risacher/sunwait"
license=("GPL3")
arch=("x86_64")

# Package relations
depends=()
makedepends=("git")
conflicts=("sunwait")

# Download information
source=("${pkgname}::git+${url}.git")
sha256sums=('SKIP')

pkgver() {
  cd "${pkgname}"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd "${srcdir}/${pkgname}" || exit
  make
}

package() {
  cd "${srcdir}/${pkgname}" || exit
  install -Dm755 sunwait "${pkgdir}/usr/bin/sunwait"
}