summary refs log tree commit diff
path: root/pkgs/os-specific/linux/initscripts/builder.sh
blob: 37bc538d692ff1732a568d848e0767c48d4215f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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