mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
598 B
Bash
22 lines
598 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Jeff Mickey <jeff@archlinux.org>
|
|
|
|
pkgname=wyrd
|
|
pkgver=1.4.4
|
|
pkgrel=2
|
|
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=('a376c05ba614625da06082d850c742c7')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --enable-utf8
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|