mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 08:12:06 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
38 lines
1003 B
Plaintext
38 lines
1003 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxdmcp
|
|
pkgver=1.1.2
|
|
pkgrel=1
|
|
pkgdesc="X11 Display Manager Control Protocol library"
|
|
url="http://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends=
|
|
makedepends="xproto"
|
|
subpackages="$pkgname-dev"
|
|
source="http://xorg.freedesktop.org/releases/individual/lib/libXdmcp-$pkgver.tar.bz2"
|
|
|
|
_builddir="$srcdir/libXdmcp-$pkgver"
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/libXdmcp-$pkgver
|
|
make -j1 DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
md5sums="18aa5c1279b01f9d18e3299969665b2e libXdmcp-1.1.2.tar.bz2"
|
|
sha256sums="81fe09867918fff258296e1e1e159f0dc639cb30d201c53519f25ab73af4e4e2 libXdmcp-1.1.2.tar.bz2"
|
|
sha512sums="f96005934b8bc752059106f8caf7df0574f5ef3c7a83bd797497b56ca556a7ff4dc1d28195e421259e82ea027b5c738094add3ec107a22544c9070725d8d46bb libXdmcp-1.1.2.tar.bz2"
|