9cf98d31f7
svn path=/nixpkgs/trunk/; revision=4148
20 lines
391 B
Bash
20 lines
391 B
Bash
source $stdenv/setup
|
|
|
|
configurePhase() {
|
|
cd config_office/;
|
|
./configure --disable-epm --disable-odk --with-java=no --disable-cups --with-system-libs --with-system-python --disable-mozilla --without-nas --disable-pasf --disable-gnome-vfs;
|
|
cd ..
|
|
}
|
|
|
|
configurePhase=configurePhase
|
|
|
|
buildPhase() {
|
|
./bootstrap
|
|
source LinuxIntelEnv.Set.sh
|
|
dmake
|
|
}
|
|
|
|
buildPhase=buildPhase
|
|
|
|
genericBuild
|