summaryrefslogtreecommitdiffstats
path: root/libxcvt
diff options
context:
space:
mode:
Diffstat (limited to 'libxcvt')
-rw-r--r--libxcvt/MAKEPKG21
1 files changed, 21 insertions, 0 deletions
diff --git a/libxcvt/MAKEPKG b/libxcvt/MAKEPKG
new file mode 100644
index 0000000..1919e3b
--- /dev/null
+++ b/libxcvt/MAKEPKG
@@ -0,0 +1,21 @@
1#!/bin/mkpkg
2# *** OpenTUX ***
3# description: VESA CVT modeline generator library
4# url: https://gitlab.freedesktop.org/xorg/lib/libxcvt
5
6name=libxcvt
7version=0.1.3
8release=1
9makedeps=(meson)
10source=(https://xorg.freedesktop.org/releases/individual/lib/libxcvt-$version.tar.xz)
11
12build() {
13 meson setup libxcvt-$version build \
14 --prefix=/usr \
15 --buildtype=plain
16
17 meson compile -C build
18 DESTDIR=$PKG meson install -C build
19}
20
21# vim: filetype=sh