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

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

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

2
src/twm/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 1.0.12
First version

17
src/twm/pkg.sh Normal file
View File

@ -0,0 +1,17 @@
NAME="twm"
DESC="A (very) minimal window manager"
VERSION="1.0.12"
FILES=("https://www.x.org/pub/individual/app/twm-$VERSION.tar.xz")
HASHES=("805ee08b5a87e1103dfe2eb925b613b4")
DEPENDS=("libxmu")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
sed -i -e '/^rcdir =/s,^\(rcdir = \).*,\1/etc/X11/app-defaults,' src/Makefile.in
./configure $XORG_CONFIG
make && make DESTDIR=${ROOTDIR} install
cd .. && rm -rf $NAME-$VERSION
}