summaryrefslogtreecommitdiffstats
path: root/libxi/MAKEPKG
blob: 5c837cd790f6b2c211eb705f2587a32a83ba3005 (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
#!/bin/mkpkg
# *** OpenTUX ***
# 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