Files
extra/libxaw3d/PKGBUILD
2025-06-22 20:39:04 -05:00

35 lines
804 B
Bash

# Maintainer: Jesus E. <heckyel@riseup.net>
# Based on xaw3d package
pkgname=libxaw3d
pkgver=1.6.3
pkgrel=3
pkgdesc="Three-D Athena widgets"
arch=('i686' 'x86_64')
url='https://xorg.freedesktop.org/'
license=('X11')
depends=('libxmu')
makedepends=('xenocara-util-macros')
source=("https://xorg.freedesktop.org/archive/individual/lib/libXaw3d-${pkgver}.tar.bz2")
sha512sums=('f79f997ff8442563c74f38c7d76fab2c9253691743ca3143047ce698adb4c126d02dc968be7bdc79ab3052b785fd705375d2f01171e3a3266736beb531c91424')
prepare() {
cd "libXaw3d-$pkgver"
autoreconf -vfi
}
build() {
cd "libXaw3d-$pkgver"
./configure \
--prefix=/usr \
--disable-static
make
}
package() {
cd "libXaw3d-$pkgver"
make DESTDIR="$pkgdir" install
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}