Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 51 lines (35 sloc) 1005 Bytes
#!/bin/env beesh
PGRP=( core )
SRCURL=""
SKIPLIST=
# PATCHES=""
# EXCLUDE=""
mee_configure() {
echo
# bee_configure
}
mee_build() {
echo
# bee_build
}
mee_install() {
mkdir -pv ${D}/{bin,boot,etc/opt,home,lib,mnt,opt}
mkdir -pv ${D}/{media/{floppy,cdrom},sbin,srv,var}
install -dv -m 0750 ${D}/root
install -dv -m 1777 ${D}/tmp ${D}/var/tmp
mkdir -pv ${D}/usr/{,local/}{bin,include,lib,sbin,src}
mkdir -pv ${D}/usr/{,local/}share/{doc,info,locale,man}
mkdir -v ${D}/usr/{,local/}share/{misc,terminfo,zoneinfo}
mkdir -pv ${D}/usr/{,local/}share/man/man{1..8}
for dir in /usr /usr/local; do
ln -sv share/{man,doc,info} ${D}$dir
done
case $(uname -m) in
x86_64) ln -sv lib ${D}/lib64 && ln -sv lib ${D}/usr/lib64 ;;
esac
mkdir -v ${D}/var/{lock,log,mail,run,spool}
mkdir -pv ${D}/var/{opt,cache,lib/{misc,locate},local}
# mariux..
mkdir -v ${D}/usr/share/bee
mkdir -v ${D}/{node,amd}
}