diff options
| author | zorz <zorz@krypt.sh> | 2026-04-01 22:52:53 +0300 |
|---|---|---|
| committer | zorz <zorz@krypt.sh> | 2026-04-01 22:52:53 +0300 |
| commit | 510ee94dc6c7b011ba95816e50d4faa8352f5e71 (patch) | |
| tree | bdebaf589f9aae422a653a29b529008513f072c3 /libxcvt | |
| parent | e304d10a0993bda38d3bda2c0a9f33443ba82212 (diff) | |
| download | xorg-main.tar.gz xorg-main.tar.xz | |
Diffstat (limited to 'libxcvt')
| -rw-r--r-- | libxcvt/MAKEPKG | 25 |
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 | |||
| 5 | name=libxcvt | ||
| 6 | version=0.1.3 | ||
| 7 | release=1 | ||
| 8 | makedeps=(meson) | ||
| 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 | |||
| 16 | meson compile -C build | ||
| 17 | DESTDIR=$PKG meson install -C build | ||
| 18 | } | ||
| 19 | |||
| 20 | signify() { | ||
| 21 | untrusted comment: public key | ||
| 22 | RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 | ||
| 23 | } | ||
| 24 | |||
| 25 | # vim: filetype=sh | ||