first commit
This commit is contained in:
3
src/btop/.gitignore
vendored
Normal file
3
src/btop/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/btop/changes.md
Normal file
2
src/btop/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.3.2
|
||||
First version
|
16
src/btop/pkg.sh
Normal file
16
src/btop/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user