blob: ef60b69c8131563c23a7231ba88a29e7c27e6445 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
MAKEDEPS="make"
DEPS="xcb-util"
# TODO check why this is one version less than the rest
PKG_VER=0.3.9
SOURCE=https://xcb.freedesktop.org/dist/xcb-util-renderutil-$PKG_VER.tar.bz2
DESC="Utility libraries for XC Binding, with functions for the render extension"
build () {
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|