mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
39 lines
965 B
Text
39 lines
965 B
Text
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxp
|
|
pkgver=1.0.3
|
|
pkgrel=3
|
|
pkgdesc="X.Org X11 libXp runtime library"
|
|
options="!check" # No testsuite
|
|
url="https://www.x.org"
|
|
arch="all"
|
|
license="MIT"
|
|
makedepends="libx11-dev libxext-dev libxau-dev xorgproto"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="https://www.x.org/releases/individual/lib/libXp-$pkgver.tar.bz2"
|
|
builddir="$srcdir"/libXp-$pkgver
|
|
|
|
prepare() {
|
|
default_prepare
|
|
update_config_guess
|
|
update_config_sub
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="502a2500ec0f519dae69ac035bf93c65c47e3bc301604aacb350e90043455f3485626194db45208e5521300b282843825e08b7f7c412a7497ffa02f5f1560c8d libXp-1.0.3.tar.bz2"
|