diff options
Diffstat (limited to 'community/tdl')
-rw-r--r-- | community/tdl/ChangeLog | 3 | ||||
-rw-r--r-- | community/tdl/PKGBUILD | 21 |
2 files changed, 24 insertions, 0 deletions
diff --git a/community/tdl/ChangeLog b/community/tdl/ChangeLog new file mode 100644 index 000000000..dba4cf7ec --- /dev/null +++ b/community/tdl/ChangeLog @@ -0,0 +1,3 @@ +2007-06-27 tardo <tardo@nagi-fanboi.net> +* Built for x86_64 + diff --git a/community/tdl/PKGBUILD b/community/tdl/PKGBUILD new file mode 100644 index 000000000..f848c12a9 --- /dev/null +++ b/community/tdl/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 7205 2010-01-03 08:15:43Z dgriffiths $ +# Maintainer: Jeff Mickey <j@codemac.net> +# Contributor: Jeff "codemac" Mickey <j@codemac.net> + +pkgname=tdl +pkgver=1.5.2 +pkgrel=4 +pkgdesc="tdl is a to-do list manager." +arch=('i686' 'x86_64') +url="http://www.rc0.org.uk/tdl/" +license=('GPL') +depends=('ncurses') +source=(http://www.rpcurnow.force9.co.uk/tdl/$pkgname-$pkgver.tar.gz) +md5sums=('620cb00bf99b7e786e2b54cda6339a1e') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr --mandir=/usr/share/man + make || return 1 + make DESTDIR=$pkgdir install +} |