blob: f5b436ed2f4f913cb1c41778c02dad1b70187b12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
MAKEDEPS="make asciidoc xmlto"
DEPS="libpng mesa xbitmaps xcb-util pam"
PKG_VER=1.0.5
SOURCE=https://www.x.org/pub/individual/app/xpr-$PKG_VER.tar.bz2
build () {
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|