summary refs log blame commit diff
path: root/pkgs/os-specific/linux/initscripts/builder.sh
blob: 37bc538d692ff1732a568d848e0767c48d4215f7 (plain) (tree)



















                                            
source $stdenv/setup

export ROOT=$out

buildPhase() {
  cd src
  make
}

buildPhase=buildPhase

installPhase() {
  make install
  cd ..; cp -af rc.d sysconfig ppp $ROOT/etc

}

installPhase=installPhase

genericBuild