summaryrefslogblamecommitdiffstats
path: root/libxcvt/MAKEPKG
blob: 1979a826be29db1ec20072cfa1133912e4ca30a9 (plain) (tree)
1
            


















                                                                                     
#!/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