2011-06-23 01:22:24 +00:00
|
|
|
# Template file for 'base-files'
|
|
|
|
pkgname=base-files
|
2012-05-03 08:22:53 +00:00
|
|
|
version=0.62
|
2011-07-16 23:17:06 +00:00
|
|
|
short_desc="Void GNU/Linux base system files"
|
2009-03-27 11:34:11 +00:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-07-16 23:17:06 +00:00
|
|
|
homepage="http://code.google.com/p/xbps"
|
2011-07-15 12:45:00 +00:00
|
|
|
license="Public domain"
|
2009-03-27 11:34:11 +00:00
|
|
|
long_desc="
|
2010-05-18 06:03:13 +00:00
|
|
|
This package installs the base system files that aren't installed by any
|
|
|
|
other package and are required on any GNU/Linux system."
|
2009-03-27 11:34:11 +00:00
|
|
|
|
2010-05-18 06:03:13 +00:00
|
|
|
noarch=yes
|
2011-07-06 06:16:56 +00:00
|
|
|
bootstrap=yes
|
2009-03-27 11:34:11 +00:00
|
|
|
|
2010-05-18 06:03:13 +00:00
|
|
|
conf_files="
|
2011-10-26 09:04:14 +00:00
|
|
|
/etc/inputrc
|
2010-05-18 06:03:13 +00:00
|
|
|
/etc/profile
|
|
|
|
/etc/hosts
|
|
|
|
/etc/host.conf
|
|
|
|
/etc/securetty
|
|
|
|
/etc/skel/.bash_profile
|
|
|
|
/etc/skel/.bash_logout
|
|
|
|
/etc/skel/.bashrc
|
2011-10-26 09:04:14 +00:00
|
|
|
/etc/skel/.inputrc
|
2010-05-18 06:03:13 +00:00
|
|
|
/etc/issue"
|
|
|
|
|
|
|
|
Add_dependency full base-directories
|
|
|
|
Add_dependency full xbps-triggers
|
2009-03-27 11:34:11 +00:00
|
|
|
|
2012-01-29 10:54:34 +00:00
|
|
|
do_install() {
|
2009-03-27 11:34:11 +00:00
|
|
|
# Install misc config files.
|
2012-05-03 08:19:31 +00:00
|
|
|
for f in bash_logout bash_profile bashrc inputrc; do
|
2011-07-15 16:55:21 +00:00
|
|
|
vinstall ${FILESDIR}/dot_${f} 644 etc/skel .${f}
|
2009-03-27 11:34:11 +00:00
|
|
|
done
|
|
|
|
|
2011-07-15 12:45:00 +00:00
|
|
|
vinstall ${FILESDIR}/securetty 600 etc
|
2011-10-26 09:04:14 +00:00
|
|
|
for f in profile hosts host.conf issue lsb-release inputrc; do
|
2011-07-15 12:45:00 +00:00
|
|
|
vinstall ${FILESDIR}/${f} 644 etc
|
|
|
|
done
|
|
|
|
vmkdir etc/profile.d
|
2009-03-27 11:34:11 +00:00
|
|
|
install -m644 ${FILESDIR}/*.sh ${DESTDIR}/etc/profile.d
|
2009-03-27 15:39:55 +00:00
|
|
|
install -m644 ${FILESDIR}/DIR_COLORS* ${DESTDIR}/etc
|
2009-03-27 11:34:11 +00:00
|
|
|
|
2011-07-15 12:45:00 +00:00
|
|
|
vinstall ${FILESDIR}/usb-load-ehci-first 644 etc/modprobe.d \
|
|
|
|
usb-load-ehci-first.conf
|
|
|
|
vinstall ${FILESDIR}/blacklist.conf 644 etc/modprobe.d
|
2010-05-18 06:33:57 +00:00
|
|
|
|
|
|
|
# Install comman licenses, from Debian.
|
2011-07-15 12:45:00 +00:00
|
|
|
vmkdir usr/share/licenses
|
2010-05-18 06:33:57 +00:00
|
|
|
install -m644 ${FILESDIR}/licenses/* ${DESTDIR}/usr/share/licenses
|
2011-07-10 11:02:46 +00:00
|
|
|
|
|
|
|
# vkpurge
|
2011-07-10 11:52:53 +00:00
|
|
|
vinstall ${FILESDIR}/vkpurge 755 sbin vkpurge
|
2009-03-27 11:34:11 +00:00
|
|
|
}
|