blob: 1979a826be29db1ec20072cfa1133912e4ca30a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/mkpkg
# 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
|