diff --git a/src/confer/changes.md b/src/confer/changes.md index a902b2f..4f6c51a 100644 --- a/src/confer/changes.md +++ b/src/confer/changes.md @@ -1,2 +1,5 @@ +# 24.04 +Updated to the latest upstream release + # 24.03 First version diff --git a/src/confer/pkg.sh b/src/confer/pkg.sh index ceba21e..58de386 100644 --- a/src/confer/pkg.sh +++ b/src/confer/pkg.sh @@ -1,7 +1,7 @@ # general info NAME="confer" DESC="MatterLinux configuration manager" -VERSION="24.03" +VERSION="24.04" # required files FILES=("https://git.matterlinux.xyz/Matter/confer/archive/${VERSION}.tar.gz") diff --git a/src/neofetch/pkg.sh b/src/neofetch/pkg.sh index fe7293f..480576a 100644 --- a/src/neofetch/pkg.sh +++ b/src/neofetch/pkg.sh @@ -14,5 +14,5 @@ PACKAGE() { make DESTDIR="${ROOTDIR}" install - cd .. && rm -rf "${NAME}" + cd .. && rm -r "${NAME}" } diff --git a/src/xcfg/changes.md b/src/xcfg/changes.md index f6e2716..9fcaa6b 100644 --- a/src/xcfg/changes.md +++ b/src/xcfg/changes.md @@ -1,3 +1,6 @@ +# 24.08m1 +Updated archive file hash + # 24.08 Updated to the latest upstream release diff --git a/src/xcfg/pkg.sh b/src/xcfg/pkg.sh index cd07f2c..a61afa3 100644 --- a/src/xcfg/pkg.sh +++ b/src/xcfg/pkg.sh @@ -1,15 +1,15 @@ NAME="xcfg" DESC="Simple xorg configuration tool" -VERSION="24.08" +VERSION="24.08m1" -FILES=("https://git.matterlinux.xyz/Matter/xcfg/archive/${VERSION}.tar.gz") +FILES=("https://git.matterlinux.xyz/Matter/xcfg/archive/${VERSION%m*}.tar.gz") HASHES=("f11a65a055d352517dc39530436734812b6ef4ed30276aec7a70787ead8c2266") DEPENDS=("ncurses" "doas") BUILD=() PACKAGE() { - tar xf "${VERSION}.tar.gz" + tar xf "${VERSION%m*}.tar.gz" cd "${NAME}" make