blob: f2387e12a369fbae07470f413dfeaa57e1859405 (
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
26
27
28
|
#!/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
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|