blob: f6b4ed41e5f049a1635da2ef210a89355aea0c0c (
plain)
1 # Description: library providing a standalone version of the X server implementation of the VESA CVT standard timing modelines generator
2 # URL: https://gitlab.freedesktop.org/xorg/lib/libxcvt
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: meson ninja
5
6 name=xorg-libxcvt
7 version=0.1.2
8 release=1
9 source=(https://xorg.freedesktop.org/releases/individual/lib/libxcvt-$version.tar.xz)
10
11 build() {
12 meson setup libxcvt-$version build \
13 --prefix=/usr \
14 --buildtype=plain \
15 --wrap-mode nodownload \
16 -D b_lto=true \
17 -D b_pie=true
18 meson compile -C build
19 DESTDIR=$PKG meson install -C build
20 }
|