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/btop/.gitignore vendored Normal file
View File

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

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

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

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

@ -0,0 +1,16 @@
NAME="btop"
DESC="A monitor of resources"
VERSION="1.3.2"
FILES=("https://github.com/aristocratos/btop/archive/refs/tags/v$VERSION.tar.gz")
HASHES=("331d18488b1dc7f06cfa12cff909230816a24c57790ba3e8224b117e3f0ae03e")
DEPENDS=()
PACKAGE() {
tar xf v$VERSION.tar.gz
cd $NAME-$VERSION
make all
make DESTDIR="$ROOTDIR" PREFIX=/usr install
cd .. && rm -r $NAME-$VERSION
}