blob: b0f739796fdf7068683dd6bd597bb00fc4470bef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
MAKEDEPS="meson ninja"
DEPS="glibc"
PKG_VER=0.1.1
SOURCE=https://www.x.org/pub/individual/lib/libxcvt-$PKG_VER.tar.xz
DESC="library providing a standalone version of the X server implementation of the VESA CVT standard timing modelines generator"
build () {
mkdir build &&
cd build &&
meson --prefix=/usr .. &&
ninja
}
package () {
DESTDIR=$PKG_DEST ninja install
}
|