mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
22 lines
648 B
Bash
22 lines
648 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Jeff 'codemac' Mickey <jeff@archlinux.org>
|
|
# Contributor: Sebastian Sontberg <ssontberg@h3c.de>
|
|
|
|
pkgname=remind
|
|
pkgver=3.01.06
|
|
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')
|
|
source=(http://www.roaringpenguin.com/files/download/remind-0$pkgver.tar.gz)
|
|
options=(!emptydirs)
|
|
md5sums=('65e5052ebdeeb31689bc68e7854150d5')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-0$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|