blob: 688accbe67b4b3353afd0cfcb7e8619f0bf1e77d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
pkgname=cronic
pkgver=2
pkgdesc="Cron job report wrapper"
url=http://habilis.net/cronic/
license=(CC0)
pkgrel=1
arch=(any)
depends=('bash')
source=(http://habilis.net/cronic/cronic
CC0-1.0.html::http://creativecommons.org/publicdomain/zero/1.0/legalcode)
md5sums=('a488e6c2c76d8d00eb5576a164be4cf3'
'b753f7299493244a3b0cad2fa4f26830')
package() {
cd "$srcdir"
install -Dm755 cronic "$pkgdir"/usr/bin/cronic
install -Dm644 CC0-1.0.html "$pkgdir"/usr/share/licenses/$pkgname/CC0-1.0.html
}
|