mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 23:36:46 +02:00
33 lines
695 B
Text
33 lines
695 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=xtrans
|
|
pkgver=1.5.2
|
|
pkgrel=0
|
|
pkgdesc="X transport library"
|
|
url="https://xorg.freedesktop.org/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
makedepends="util-macros xmlto"
|
|
source="https://www.x.org/releases/individual/lib/xtrans-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
mkdir -p "$pkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/share/pkgconfig "$pkgdir"/usr/lib
|
|
}
|
|
|
|
sha512sums="
|
|
4c4909402cb7df0d69bf2801722de822f7e376d585ff5aa8db8f88be77ed7fb7dfbdc410827069fc5041327e81afeb9d403c6c92e5c1e02d593c829ef6c37536 xtrans-1.5.2.tar.xz
|
|
"
|