blob: 5b819bc9ad31c90ee7436a19fd5a5d23861e23b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
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 --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|