21 lines
424 B
Plaintext
21 lines
424 B
Plaintext
# Description: command line application for maintaining lists of tasks
|
|
# URL: http://swapoff.org/DevTodo
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
|
|
name=devtodo
|
|
version=0.1.20
|
|
release=2
|
|
source=(http://swapoff.org/files/$name/$name-$version.tar.gz
|
|
$name.diff)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
patch -Np1 -i $SRC/$name.diff
|
|
|
|
./configure --prefix=/usr --mandir=/usr/man
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|