first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

12
src/xcfg/pkg.sh Normal file
View File

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