summaryrefslogtreecommitdiffstats
path: root/libxcvt/MAKEPKG
blob: 7a445ae58ff074ba44798ec34b1a672cb12cd382 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh