diff options
author | davidovski <david@davidovski.xyz> | 2022-06-04 15:08:04 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-04 15:08:04 +0100 |
commit | 873665024ebfaa761ee49b508a79db7178aeb778 (patch) | |
tree | 6cd3b4ce3a9f4b0586ffa48e73a6ba4c8da2db43 /repo/twm/twm.xibuild | |
parent | 4445f6e15185f58dc599390ab74df3ca19b437b7 (diff) |
added gnupg
Diffstat (limited to 'repo/twm/twm.xibuild')
-rw-r--r-- | repo/twm/twm.xibuild | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/repo/twm/twm.xibuild b/repo/twm/twm.xibuild new file mode 100644 index 0000000..ac0764b --- /dev/null +++ b/repo/twm/twm.xibuild @@ -0,0 +1,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 +} + |