new: mtsc package
This commit is contained in:
parent
d3bf2f00ea
commit
4405d0269e
3
src/mtsc/.gitignore
vendored
Normal file
3
src/mtsc/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
5
src/mtsc/changes.md
Normal file
5
src/mtsc/changes.md
Normal file
@ -0,0 +1,5 @@
|
||||
# 24.05
|
||||
Updated to new upstream release
|
||||
|
||||
# 24.04
|
||||
First version
|
24
src/mtsc/pkg.sh
Normal file
24
src/mtsc/pkg.sh
Normal file
@ -0,0 +1,24 @@
|
||||
# general info
|
||||
NAME="mtsc"
|
||||
DESC="MatterLinux tools and scripts collection"
|
||||
VERSION="24.05"
|
||||
|
||||
# required files
|
||||
FILES=("https://git.matterlinux.xyz/Matter/mtsc/archive/${VERSION}.tar.gz")
|
||||
HASHES=("9d9ba6a83429e81bf54e22bbd66aba3040bc2f6ff804b14ac2ad9091b24df343")
|
||||
|
||||
# install and build depends
|
||||
DEPENDS=(
|
||||
"bash" "coreutils" "gnupg"
|
||||
"fakeroot" "tar" "matt"
|
||||
)
|
||||
BUILD=()
|
||||
|
||||
PACKAGE(){
|
||||
tar xf "${VERSION}.tar.gz"
|
||||
cd "${NAME}"
|
||||
|
||||
make DESTDIR="${ROOTDIR}" install
|
||||
|
||||
cd .. && rm -r "${NAME}"
|
||||
}
|
Loading…
Reference in New Issue
Block a user