view core/filesystem/filesystem.sh @ 493:9987c7d6e9cf

system/accountsservice: initial import, closes #1581
author David Demelier <markand@malikania.fr>
date Mon, 08 Apr 2019 12:53:31 +0200
parents 36f3ab3945d7
children 014d018468fb
line wrap: on
line source

#!/bin/sh
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

PKGNAME=filesystem
PKGVERSION=0.1
PKGREVISION=1
PKGLICENSE="ISC"
PKGSUMMARY="base filesystem directories"
PKGDOWNLOAD=""

build()
{
	install -d $DESTDIR/etc
	install -d $DESTDOR/etc/rc.d
	install -d $DESTDIR/home
	install -d $DESTDIR/mnt
	install -d $DESTDIR/proc
	install -d -m 0700 $DESTDIR/root
	install -d $DESTDIR/run
	install -d $DESTDIR/sys
	install -d $DESTDIR/dev/pts

	install -d $DESTDIR/usr/{bin,sbin,include,lib,share,src}
	install -d $DESTDIR/usr/share/man/man{1,2,3,4,5,6,7,8}

	install -d $DESTDIR/var/{log,empty,run,spool}
	install -d $DESTDIR/var/lib/vpk

	install -d -m 1777 $DESTDIR/tmp
	install -d -m 1777 $DESTDIR/var/tmp

	# in vanilla /bin, /sbin and /lib are symlinked to /usr
	ln -sf usr/bin $DESTDIR/bin
	ln -sf usr/lib $DESTDIR/lib
	ln -sf usr/sbin $DESTDIR/sbin
}