aports/main/libxaw/APKBUILD
2024-04-11 21:39:10 +00:00

45 lines
879 B
Text

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libxaw
pkgver=1.0.16
pkgrel=1
pkgdesc="X Athena Widget Set"
url="https://www.x.org/"
arch="all"
license="MIT"
makedepends="
libx11-dev
libxext-dev
libxmu-dev
libxpm-dev
util-macros
xorgproto
"
subpackages="$pkgname-dev $pkgname-doc"
source="https://www.x.org/releases/individual/lib/libXaw-$pkgver.tar.xz"
builddir="$srcdir"/libXaw-$pkgver
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
--disable-static \
--disable-xaw6
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="
1cabad1a9b06dec7de601b977e844536823ee1a0045244acc42ca6b6107da9b4953736d94898a96cab40845eab77dae21e20e1fa66a3dfc4dedf575dfbca04aa libXaw-1.0.16.tar.xz
"