mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 09:41:39 +01:00
37 lines
833 B
Plaintext
37 lines
833 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxi
|
|
pkgver=1.4.3
|
|
pkgrel=0
|
|
pkgdesc="X11 Input extension library"
|
|
url="http://xorg.freedesktop.org"
|
|
arch="all"
|
|
license="custom"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
depends=
|
|
makedepends="
|
|
inputproto
|
|
libx11-dev
|
|
libxext-dev
|
|
pkgconfig
|
|
xextproto
|
|
xproto
|
|
"
|
|
source="http://xorg.freedesktop.org/releases/individual/lib/libXi-$pkgver.tar.bz2"
|
|
|
|
depends_dev="inputproto libx11-dev libxext-dev"
|
|
|
|
build ()
|
|
{
|
|
cd "$srcdir"/libXi-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/libXi-$pkgver
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm "$pkgdir"/usr/lib/*.la || return 1
|
|
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
md5sums="792e8a7ddc7175911d69f823d38eaff6 libXi-1.4.3.tar.bz2"
|