summary refs log tree commit diff
path: root/pkgs/development/libraries/Xaw3d/builder.sh
blob: d64102b4f664fadcca6d0880cfb4f9f73d47ffbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
source $stdenv/setup

configurePhase=configurePhase
configurePhase() {
    cd lib/Xaw3d
    (mkdir X11 && cd X11 && ln -fs .. Xaw3d)
    xmkmf
}

buildPhase=buildPhase
buildPhase() {
    make depend $makeFlags
    make $makeFlags
}

installPhase() {
    make install SHLIBDIR=$out/lib USRLIBDIR=$out/lib INCDIR=$out/include
}

makeFlags="CDEBUGFLAGS=" # !!! awful hack

genericBuild