summaryrefslogtreecommitdiff
path: root/community/wyrd
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/wyrd
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/wyrd')
-rw-r--r--community/wyrd/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/wyrd/PKGBUILD b/community/wyrd/PKGBUILD
new file mode 100644
index 000000000..e93adb06e
--- /dev/null
+++ b/community/wyrd/PKGBUILD
@@ -0,0 +1,27 @@
+# Contributor: Jeff Mickey <jeff@archlinux.org>
+# Maintainer: Daniel J Griffiths <griffithsdj@archlinux.us>
+
+pkgname=wyrd
+pkgver=1.4.5
+pkgrel=1
+pkgdesc="A text-based front-end to Remind."
+arch=('i686' 'x86_64')
+url="http://pessimization.com/software/wyrd/"
+license=('GPL')
+depends=('remind' 'ncurses')
+makedepends=('ocaml')
+source=(http://pessimization.com/software/wyrd/${pkgname}-${pkgver}.tar.gz)
+md5sums=('3f39fa83a54d2d890823094aba9ca3cc')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+
+ ./configure --prefix=/usr --sysconfdir=/etc --enable-utf8
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+
+ make DESTDIR=${pkgdir} install
+}