2010-05-18 08:01:55 +02:00
|
|
|
# Template file for 'base-directories'
|
|
|
|
pkgname=base-directories
|
2011-10-11 06:01:11 +02:00
|
|
|
version=0.15
|
2011-07-17 01:15:26 +02:00
|
|
|
short_desc="Void GNU/Linux base system directories"
|
2010-05-18 08:01:55 +02:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-07-17 01:15:26 +02:00
|
|
|
homepage="http://code.google.com/p/xbps"
|
2011-07-10 23:55:03 +02:00
|
|
|
license="Public domain"
|
2010-05-18 08:01:55 +02:00
|
|
|
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."
|
|
|
|
|
2011-06-25 10:43:54 +02:00
|
|
|
noarch=yes
|
2011-07-06 08:16:56 +02:00
|
|
|
bootstrap=yes
|
2010-05-18 08:01:55 +02:00
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
2011-06-25 10:43:54 +02:00
|
|
|
. ${XBPS_SRCPKGDIR}/${pkgname}/INSTALL
|
|
|
|
install -d ${DESTDIR}
|
|
|
|
cd ${DESTDIR} && make_system_dirs
|
|
|
|
}
|
2011-05-04 13:10:50 +02:00
|
|
|
|
2011-06-25 10:43:54 +02:00
|
|
|
post_stow()
|
|
|
|
{
|
|
|
|
. ${XBPS_SRCPKGDIR}/${pkgname}/INSTALL
|
|
|
|
cd ${XBPS_MASTERDIR} && make_system_dirs
|
2010-05-18 08:01:55 +02:00
|
|
|
}
|