2010-05-18 08:01:55 +02:00
|
|
|
# Template file for 'base-directories'
|
|
|
|
pkgname=base-directories
|
2011-05-04 13:10:50 +02:00
|
|
|
version=0.5
|
2010-05-18 08:01:55 +02:00
|
|
|
build_style=custom-install
|
|
|
|
short_desc="XBPS FHS Base System directories"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
long_desc="
|
|
|
|
This package installs the base system directories as specifed by FHS that aren't
|
|
|
|
installed by any other package and are required on any GNU/Linux system."
|
|
|
|
|
|
|
|
nostrip=yes
|
|
|
|
noverifyrdeps=yes
|
|
|
|
keep_empty_dirs=yes
|
|
|
|
base_chroot=yes
|
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
|
|
|
#
|
|
|
|
# Install FHS system directories.
|
|
|
|
#
|
|
|
|
for d in bin sbin boot etc etc/modprobe.d etc/skel \
|
2011-04-29 20:21:12 +02:00
|
|
|
home lib dev proc mnt opt sys var media run; do
|
2010-05-18 08:01:55 +02:00
|
|
|
install -d ${DESTDIR}/${d}
|
|
|
|
done
|
|
|
|
|
|
|
|
install -d -m750 ${DESTDIR}/root
|
2011-04-29 22:39:54 +02:00
|
|
|
for d in var/spool/mail; do
|
2010-05-18 08:01:55 +02:00
|
|
|
install -d -m1777 ${DESTDIR}/${d}
|
|
|
|
done
|
|
|
|
|
|
|
|
for d in local local/bin local/sbin local/include local/lib \
|
|
|
|
bin include lib sbin src; do
|
|
|
|
install -d ${DESTDIR}/usr/${d}
|
|
|
|
done
|
|
|
|
|
|
|
|
for d in locale misc terminfo zoneinfo doc info; do
|
|
|
|
install -d ${DESTDIR}/usr/share/${d}
|
|
|
|
install -d ${DESTDIR}/usr/local/share/${d}
|
|
|
|
done
|
|
|
|
|
|
|
|
for f in 1 2 3 4 5 6 7 8; do
|
|
|
|
install -d ${DESTDIR}/usr/share/man/man${d}
|
|
|
|
install -d ${DESTDIR}/usr/local/share/man/man${d}
|
|
|
|
done
|
|
|
|
|
|
|
|
cd ${DESTDIR}/usr && ln -s ./share/man man
|
|
|
|
cd ${DESTDIR}/usr/local && ln -s ./share/man man
|
|
|
|
|
|
|
|
for d in log run opt cache lib; do
|
|
|
|
install -d ${DESTDIR}/var/${d}
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "$xbps_machine" = "x86_64" ]; then
|
|
|
|
cd ${DESTDIR} && ln -s lib lib64
|
|
|
|
cd ${DESTDIR}/usr && ln -s lib lib64
|
|
|
|
fi
|
2011-05-04 13:10:50 +02:00
|
|
|
|
|
|
|
install -d ${DESTDIR}/lib/rc
|
|
|
|
|
|
|
|
for d in init.d pid udev; do
|
|
|
|
install -d -m0755 ${DESTDIR}/run/${d}
|
|
|
|
done
|
|
|
|
for d in lock tmp shm; do
|
|
|
|
install -d -m1777 ${DESTDIR}/run/${d}
|
|
|
|
done
|
2010-05-18 08:01:55 +02:00
|
|
|
}
|