core/libxaw/PKGBUILD
2013-12-17 23:39:41 +00:00

29 lines
763 B
Bash

# Part of the X.org group
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
pkgname=libxaw
pkgver=1.0.12
pkgrel=1
pkgdesc="X11 Athena Widget library"
arch=(x86_64)
license=('custom')
url="http://xorg.freedesktop.org/"
depends=('libxmu' 'libxpm')
makedepends=('xorg-util-macros')
options=('!libtool')
source=(${url}/releases/individual/lib/libXaw-${pkgver}.tar.bz2)
sha1sums=('6919476379accaf21f2331004e5cfa7939a6786b')
build() {
cd "${srcdir}/libXaw-${pkgver}"
./configure --prefix=/usr --sysconfdir=/etc --disable-static
make
}
package() {
cd "${srcdir}/libXaw-${pkgver}"
make DESTDIR="${pkgdir}" install
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
}