summaryrefslogtreecommitdiffstats
path: root/libxcvt/MAKEPKG
diff options
context:
space:
mode:
authorzorz <zorz@krypt.sh>2026-04-01 22:52:53 +0300
committerzorz <zorz@krypt.sh>2026-04-01 22:52:53 +0300
commit510ee94dc6c7b011ba95816e50d4faa8352f5e71 (patch)
treebdebaf589f9aae422a653a29b529008513f072c3 /libxcvt/MAKEPKG
parente304d10a0993bda38d3bda2c0a9f33443ba82212 (diff)
downloadxorg-main.tar.gz
xorg-main.tar.xz
Diffstat (limited to 'libxcvt/MAKEPKG')
-rw-r--r--libxcvt/MAKEPKG25
1 files changed, 25 insertions, 0 deletions
diff --git a/libxcvt/MAKEPKG b/libxcvt/MAKEPKG
new file mode 100644
index 0000000..7a445ae
--- /dev/null
+++ b/libxcvt/MAKEPKG
@@ -0,0 +1,25 @@
1#!/bin/mkpkg
2# description: VESA CVT modeline generator library
3# url: https://gitlab.freedesktop.org/xorg/lib/libxcvt
4
5name=libxcvt
6version=0.1.3
7release=1
8makedeps=(meson)
9source=(https://xorg.freedesktop.org/releases/individual/lib/libxcvt-$version.tar.xz)
10
11build() {
12 meson setup libxcvt-$version build \
13 --prefix=/usr \
14 --buildtype=plain
15
16 meson compile -C build
17 DESTDIR=$PKG meson install -C build
18}
19
20signify() {
21 untrusted comment: public key
22 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
23}
24
25# vim: filetype=sh