summaryrefslogtreecommitdiffstats
path: root/task/PKGBUILD
blob: a8aedf881b508f2172138cfeb574dc6877078f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer:  TDY <tdy@gmx.com>
# Contributor: Ray Kohler <ataraxia@gmail.com>
# Contributor: muflax <muflax@gmail.com>

pkgname=task
pkgver=1.9.2
pkgrel=1
pkgdesc="A command-line todo list manager"
arch=('i686' 'x86_64')
url="http://taskwarrior.org/projects/show/taskwarrior/"
license=('GPL')
depends=('gcc-libs' 'ncurses')
source=(http://www.taskwarrior.org/download/$pkgname-$pkgver.tar.gz)
md5sums=('be98cc74fe03b8336250e0b7ed3cd8c7')

build() {
  cd "$srcdir/$pkgname-$pkgver"
  ./configure --prefix=/usr
  make CXXFLAGS="$CXXFLAGS" || return 1
}

package() {
  cd "$srcdir/$pkgname-$pkgver"
  make DESTDIR="$pkgdir" install
}