blob: ac0764be8a04e408cc1a227672af7c4d7839f1ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
NAME="twm"
DESC="Tom's or Tab Window Manager for the X Window System"
MAKEDEPS=" bison xorg-util-macros libxext libx11 libxt libice libxmu"
PKG_VER=1.0.11
SOURCE="https://www.x.org/releases/individual/app/twm-$PKG_VER.tar.xz"
build() {
./configure \
--prefix=/usr \
--datarootdir=/usr/share
make
}
package() {
make DESTDIR="$PKG_DEST" install
}
|