nixpkgs/pkgs/applications/office/openoffice/builder.sh

20 lines
391 B
Bash
Raw Normal View History

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