task: initial release

This commit is contained in:
Juergen Daubert 2010-11-15 18:29:53 +01:00
parent 496299cd4a
commit ac0be9c182
3 changed files with 71 additions and 0 deletions

44
task/.footprint Normal file
View File

@ -0,0 +1,44 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/task
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/task.1.gz
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/task-color.5.gz
-rw-r--r-- root/root usr/man/man5/task-faq.5.gz
-rw-r--r-- root/root usr/man/man5/task-sync.5.gz
-rw-r--r-- root/root usr/man/man5/task-tutorial.5.gz
-rw-r--r-- root/root usr/man/man5/taskrc.5.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/task/
drwxr-xr-x root/root usr/share/task/rc/
-rw-r--r-- root/root usr/share/task/rc/dark-16.theme
-rw-r--r-- root/root usr/share/task/rc/dark-256.theme
-rw-r--r-- root/root usr/share/task/rc/dark-blue-256.theme
-rw-r--r-- root/root usr/share/task/rc/dark-green-256.theme
-rw-r--r-- root/root usr/share/task/rc/dark-red-256.theme
-rw-r--r-- root/root usr/share/task/rc/dark-violets-256.theme
-rw-r--r-- root/root usr/share/task/rc/dark-yellow-green.theme
-rw-r--r-- root/root usr/share/task/rc/holidays-CA.rc
-rw-r--r-- root/root usr/share/task/rc/holidays-DE.rc
-rw-r--r-- root/root usr/share/task/rc/holidays-ES.rc
-rw-r--r-- root/root usr/share/task/rc/holidays-FR.rc
-rw-r--r-- root/root usr/share/task/rc/holidays-NL.rc
-rw-r--r-- root/root usr/share/task/rc/holidays-SE.rc
-rw-r--r-- root/root usr/share/task/rc/holidays-UK.rc
-rw-r--r-- root/root usr/share/task/rc/holidays-US.rc
-rw-r--r-- root/root usr/share/task/rc/light-16.theme
-rw-r--r-- root/root usr/share/task/rc/light-256.theme
drwxr-xr-x root/root usr/share/task/scripts/
drwxr-xr-x root/root usr/share/task/scripts/bash/
-rw-r--r-- root/root usr/share/task/scripts/bash/task_completion.sh
drwxr-xr-x root/root usr/share/task/scripts/vim/
drwxr-xr-x root/root usr/share/task/scripts/vim/ftdetect/
-rw-r--r-- root/root usr/share/task/scripts/vim/ftdetect/task.vim
drwxr-xr-x root/root usr/share/task/scripts/vim/syntax/
-rw-r--r-- root/root usr/share/task/scripts/vim/syntax/taskdata.vim
-rw-r--r-- root/root usr/share/task/scripts/vim/syntax/taskedit.vim
-rw-r--r-- root/root usr/share/task/scripts/vim/syntax/taskrc.vim
drwxr-xr-x root/root usr/share/task/scripts/zsh/
-rw-r--r-- root/root usr/share/task/scripts/zsh/_task

1
task/.md5sum Normal file
View File

@ -0,0 +1 @@
1eb9cf957a3abf60e148208e587909c2 task-1.9.3.tar.gz

26
task/Pkgfile Normal file
View File

@ -0,0 +1,26 @@
# Description: Powerful task manager for the command-line
# URL: http://taskwarrior.org/projects/show/taskwarrior/
# Maintainer: Juergen Daubert, jue at crux dot nu
name=task
version=1.9.3
release=1
source=(http://www.taskwarrior.org/download/$name-$version.tar.gz)
build () {
cd $name-$version
sed -i 's|local/share/doc|share|' src/Config.cpp
sed -i 's/-O3//' configure
./configure --prefix=/usr \
--mandir=/usr/man \
--docdir=/usr/share/task
make CFLAGS="$CFLAGS"
make DESTDIR=$PKG install
rm -r $PKG/usr/share/task/i18n
rm $PKG/usr/share/task/{AUTHORS,COPYING,ChangeLog,NEWS,README}
rm $PKG/usr/share/task/scripts/vim/README
}