blob: 229b18adbaa644aa34aafde6691eabb84325938d (
plain)
1 # Description: 3D-style graphics library for X
2 # URL: http://directory.fsf.org/wiki/Xaw3d
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: xorg-libxpm, xorg-libxmu, xorg-imake
5
6 name=xaw3d
7 version=1.6.2
8 release=1
9 source=(http://xorg.freedesktop.org/archive/individual/lib/libXaw3d-$version.tar.bz2)
10
11 build () {
12 cd libXaw3d-$version
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 rm -r $PKG/usr/share
17 }
|