summaryrefslogblamecommitdiffstats
path: root/libxi/MAKEPKG
blob: d6b5d0f87f1cf150517f4cd71a5e839bd43f9dfe (plain) (tree)
1
            





















                                                                        
#!/bin/mkpkg
# description: X Input extension library
# url: https://xorg.freedesktop.org

name=libxi
version=1.8.2
release=1
depends=(libxext libxfixes)
source=(https://www.x.org/releases/individual/lib/libXi-$version.tar.xz)

build() {
    cd libXi-$version
    
    ./configure \
        --prefix=/usr \
        --disable-docs \
        --disable-specs
    
    make
    make DESTDIR=$PKG install
}

# vim: filetype=sh