diff --git a/src/matt/changes.md b/src/matt/changes.md index 99d2222..6e9b974 100644 --- a/src/matt/changes.md +++ b/src/matt/changes.md @@ -1,3 +1,6 @@ +# 24.01m1 +Added configuration file (etc/matt/config.ini) to KEEP + # 24.01 Updated to new upstream release diff --git a/src/matt/pkg.sh b/src/matt/pkg.sh index ceb2ebd..45e424e 100644 --- a/src/matt/pkg.sh +++ b/src/matt/pkg.sh @@ -1,25 +1,25 @@ # general info NAME="matt" DESC="The (new) MatterLinux package manager" -VERSION="24.01" +VERSION="24.01m1" # required files FILES=( - "https://git.matterlinux.xyz/Matter/matt/archive/${VERSION}.tar.gz" + "https://git.matterlinux.xyz/Matter/matt/archive/${VERSION%m*}.tar.gz" "config.ini" ) HASHES=( "543c304866186b31ba6ee6827121e936da5c2c74c16e598010fea46669421364" "d71417d617f9953c3d2746edd3c62dd1b17851e5a459a62ffc320c9738c88b30" ) -KEEP=("/etc/matt/config.ini") +KEEP=("etc/matt/config.ini") # install and build depends DEPENDS=("libmp" "libinih" "gettext") BUILD=("gcc" "make") PACKAGE(){ - tar xf "${VERSION}.tar.gz" + tar xf "${VERSION%m*}.tar.gz" cd "${NAME}" make