diff options
author | davidovski <david@davidovski.xyz> | 2022-02-19 16:20:20 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-19 16:20:20 +0000 |
commit | 841b927fe0a1d51875d7f741fd0ae679969a049c (patch) | |
tree | f07ae244a10d95421ca90f65689f5191ad6a8ad2 /repo/x11/xeyes.xibuild | |
parent | 8aa51a5e03149837504688ab3cdcb7aa2ee5fadd (diff) |
added some x applications
Diffstat (limited to 'repo/x11/xeyes.xibuild')
-rw-r--r-- | repo/x11/xeyes.xibuild | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/repo/x11/xeyes.xibuild b/repo/x11/xeyes.xibuild new file mode 100644 index 0000000..cca8801 --- /dev/null +++ b/repo/x11/xeyes.xibuild @@ -0,0 +1,18 @@ +#!/bin/bash + +MAKEDEPS=(make) +DEPS=(libx11 libxt libxext libxmu libxrender libxi) + +DESC="Eyes that follow the mouse, X demo" + +PKG_VER=1.2.0 +SOURCE=https://www.x.org/archive/individual/app/xeyes-$PKG_VER.tar.gz + +build () { + ./configure $XORG_CONFIG + make +} + +package () { + make DESTDIR=$PKG_DEST install +} |