aboutsummaryrefslogtreecommitdiff
path: root/core/sinit/build
blob: 182d70cf323b73f1b3b16df878ee64b3e4bafb22 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

make CFLAGS="$CFLAGS -static" PREFIX=/usr DESTDIR="$1" install
mv "$1/usr/bin/sinit" "$1/usr/bin/init"

install -Dm755 poweroff "$1/usr/bin/poweroff"
install -Dm755 reboot "$1/usr/bin/reboot"

install -Dm644 sinit-launch-services.boot "$1/etc/init/sinit-launch-services.boot"
install -Dm644 sinit.post.shutdown "$1/etc/init/sinit.post.shutdown"
install -Dm644 sinit.pre.shutdown "$1/etc/init/sinit.pre.shutdown"