summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4ddb3c489d28d49c5427a1ad5b3e16be228f2e61 (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
# Maintainer: Matthew Gamble <git@matthewgamble.net>

pkgname=hr
pkgver=1.0.0
pkgrel=1
pkgdesc="A port of LuRsT's hr to c"
arch=('i686' 'x86_64')
url="https://github.com/djmattyg007/hr"
license=('custom:Public Domain')
source=("https://github.com/djmattyg007/hr/releases/download/${pkgver}/hr-${pkgver}.tar.gz")
md5sums=('cd05ca336dc87bc0b22db97a831dd3ee')

build() {
    cd "hr-${pkgver}"
    ./configure --prefix=/usr
    make
}

check() {
    cd "hr-${pkgver}"
    make -k check
}

package() {
    cd "hr-${pkgver}"
    make DESTDIR="${pkgdir}/" install
    rm "${pkgdir}/usr/share/doc/hr/LICENSE.txt"
    install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/hr/LICENSE.txt"
}