17 lines
390 B
Bash
17 lines
390 B
Bash
NAME="lxtask"
|
|
DESC="Lightweight and desktop-independent task manager"
|
|
VERSION="0.1.10"
|
|
FILES=("https://downloads.sourceforge.net/lxde/lxtask-$VERSION.tar.xz")
|
|
HASHES=("27b5258847afc237a5b89666e7a8b45b")
|
|
DEPENDS=("gtk2")
|
|
|
|
PACKAGE() {
|
|
tar xf $NAME-$VERSION.tar.xz
|
|
cd $NAME-$VERSION
|
|
|
|
./configure --prefix=/usr
|
|
make && make DESTDIR="$ROOTDIR" install
|
|
|
|
cd .. && rm -r $NAME-$VERSION
|
|
}
|