first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/lxtask/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/lxtask/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 0.1.10
First version

16
src/lxtask/pkg.sh Normal file
View File

@ -0,0 +1,16 @@
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
}