summaryrefslogtreecommitdiff
path: root/community/remind/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/remind/PKGBUILD
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/remind/PKGBUILD')
-rw-r--r--community/remind/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/community/remind/PKGBUILD b/community/remind/PKGBUILD
new file mode 100644
index 000000000..61fec08ad
--- /dev/null
+++ b/community/remind/PKGBUILD
@@ -0,0 +1,30 @@
+# Contributor: Jeff 'codemac' Mickey <jeff@archlinux.org>
+# Contributor: Sebastian Sontberg <ssontberg@h3c.de>
+# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
+
+pkgname=remind
+pkgver=3.01.10
+pkgrel=1
+pkgdesc='A sophisticated calendar and alarm progam.'
+arch=('i686' 'x86_64')
+url='http://www.roaringpenguin.com/penguin/open_source_remind.php'
+license=('GPL')
+depends=('tk' 'tcllib')
+source=("http://www.roaringpenguin.com/files/download/${pkgname}-0${pkgver}.tar.gz")
+options=('!emptydirs')
+md5sums=('f6f7829d3ac92e0d6d463c59b5e6ce3f')
+
+build() {
+ cd ${pkgname}-0${pkgver}
+
+ ./configure \
+ --prefix=/usr
+
+ make
+}
+
+package() {
+ cd ${pkgname}-0${pkgver}
+
+ make DESTDIR=${pkgdir} install
+}