blob: 916290ef70ec8056125c4339a3813cb8d4bb1fd0 (
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
|
# Maintainer: Filip Borkiewicz <boreq 0x46 net>
pkgname=clcal
pkgver=0.20.1
pkgrel=1
pkgdesc='a calendar program for tracking appointments'
arch=('x86_64')
url='https://github.com/boreq/clcal'
license=('GPL2')
makedepends=('git')
depends=('glibc')
source=("$pkgname-$pkgver.tar.gz::https://github.com/boreq/clcal/archive/v0.20.1.tar.gz")
sha512sums=('5996d04740fa2d98a3455ba4714c779e38fdb07821a85213458604ea3630e5eaf6c8fe9b698766dfb01b4139afeaf967f1579d974d672d9732dc897d8baab38c')
build() {
cd "${pkgname}-${pkgver}"
make
}
package() {
cd "${pkgname}-${pkgver}"
install -Dm755 clcal "${pkgdir}"/usr/bin/clcal
}
|