summaryrefslogtreecommitdiff
path: root/community/wyrd
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/wyrd
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
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..b5944718a
--- /dev/null
+++ b/community/wyrd/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Jeff Mickey <jeff@archlinux.org>
+# Contributor: Daniel J Griffiths <griffithsdj@archlinux.us>
+
+pkgname=wyrd
+pkgver=1.4.6
+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=('2fc561482fdac4daac0cb6735d934ebe')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./configure --prefix=/usr --sysconfdir=/etc --enable-utf8
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}