blob: d6ba37c7795c80bf8b883ced651f04587e9307b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
# Contributor: Vitaliy Berdinskikh <skipper13@root.ua>
pkgname=rem2ics
pkgver=0.94
pkgrel=1
pkgdesc="A script that will convert Remind events to iCalendar format"
arch=('any')
url="http://mark.atwood.name/code/"
license=('GPL2')
depends=('perl' 'remind')
makedepends=('bzr')
source=('bzr+lp:rem2ics')
md5sums=('SKIP')
package() {
cd $srcdir/rem2ics
make -f rem2ics-Makefile DESTDIR=$pkgdir install || return 1
}
|