blob: 1919e3bf7b7cde5768817ae4dbfaf58c9b4eb0a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/mkpkg
# *** OpenTUX ***
# description: VESA CVT modeline generator library
# url: https://gitlab.freedesktop.org/xorg/lib/libxcvt
name=libxcvt
version=0.1.3
release=1
makedeps=(meson)
source=(https://xorg.freedesktop.org/releases/individual/lib/libxcvt-$version.tar.xz)
build() {
meson setup libxcvt-$version build \
--prefix=/usr \
--buildtype=plain
meson compile -C build
DESTDIR=$PKG meson install -C build
}
# vim: filetype=sh
|