new: mtsc package

This commit is contained in:
ngn 2024-08-19 00:55:14 +03:00
parent d3bf2f00ea
commit 4405d0269e
3 changed files with 32 additions and 0 deletions

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

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

5
src/mtsc/changes.md Normal file
View File

@ -0,0 +1,5 @@
# 24.05
Updated to new upstream release
# 24.04
First version

24
src/mtsc/pkg.sh Normal file
View 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}"
}