update: xcfg 24.08

This commit is contained in:
ngn 2024-08-25 23:26:36 +03:00
parent b69eeff27a
commit 41d314b0a1
2 changed files with 16 additions and 6 deletions

View File

@ -1,2 +1,5 @@
# 24.08
Updated to the latest upstream release
# 24.07 # 24.07
First version First version

View File

@ -1,12 +1,19 @@
NAME="xcfg" NAME="xcfg"
DESC="Simple xorg configuration tool" DESC="Simple xorg configuration tool"
VERSION="24.07" VERSION="24.08"
FILES=("https://git.matterlinux.xyz/Matter/xcfg/archive/$VERSION.tar.gz")
HASHES=("3ea5b5f42021e2cfa844f9d7bade539a2fb64d6b0a779f8e77b7c0689dad94d6") FILES=("https://git.matterlinux.xyz/Matter/xcfg/archive/${VERSION}.tar.gz")
HASHES=("f11a65a055d352517dc39530436734812b6ef4ed30276aec7a70787ead8c2266")
DEPENDS=("ncurses" "doas") DEPENDS=("ncurses" "doas")
BUILD=()
PACKAGE() { PACKAGE() {
tar xf $VERSION.tar.gz && cd $NAME tar xf "${VERSION}.tar.gz"
make && make DESTDIR=$ROOTDIR install cd "${NAME}"
cd .. && rm -r $NAME
make
make DESTDIR="${ROOTDIR}" install
cd .. && rm -r "${NAME}"
} }