blob: 4cc1202b53c1e4998d034aafcfa27502ec339e19 (
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
|
# Maintainer: Adrian Perez de Castro <aperez@igalia.com>
pkgdesc='Convert remind(1) entries to iCalendar .ics format'
pkgname=remmy
pkgver=0.20191227
pkgrel=1
_commit=c42d400ed933da625b5ea25be06ef51c2b22d59f
url=https://github.com/smartmic/remmy
arch=(any)
makedepends=(git)
depends=(perl-uuid-tiny perl-datetime)
source=("${pkgname}-${pkgver}::git+${url}#commit=${_commit}")
sha512sums=(SKIP)
build () {
cd "${pkgname}-${pkgver}"
# Extract manual page
pod2man -v remmy.pl remmy.1
}
package () {
cd "${pkgname}-${pkgver}"
install -Dm755 remmy.pl "${pkgdir}/usr/bin/remmy"
install -Dm644 -t "${pkgdir}/usr/share/man/man1/" remmy.1
}
|