first commit
This commit is contained in:
3
src/twm/.gitignore
vendored
Normal file
3
src/twm/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/twm/changes.md
Normal file
2
src/twm/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.0.12
|
||||
First version
|
17
src/twm/pkg.sh
Normal file
17
src/twm/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user