1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# $Id: PKGBUILD 96685 2010-10-24 09:56:25Z pierre $
# Maintainer: Aaron Griffin <aaron@archlinux.org>
# Contributor: judd <jvinet@zeroflux.org>
pkgname=filesystem
pkgver=2010.10
pkgrel=1
pkgdesc="Base filesystem"
arch=('any')
license=('GPL')
url="http://www.archlinux.org"
groups=('base')
install=filesystem.install
# These dependencies are not needed for initial installation.
# They are only required on upgrade to create missing groups.
#depends=('sh' 'coreutils')
depends=('iana-etc')
backup=(etc/fstab etc/crypttab etc/group etc/hosts etc/ld.so.conf etc/passwd
etc/shadow etc/gshadow etc/resolv.conf etc/motd etc/nsswitch.conf
etc/shells etc/host.conf etc/securetty etc/profile )
source=(group nsswitch.conf securetty host.conf ld.so.conf
passwd shadow fstab crypttab hosts motd resolv.conf shells
gshadow profile modprobe.d.usb-load-ehci-first)
md5sums=('75c7e1770305e1f3b75c52785c137611'
'1bdc5dba66947d74866a5df8ce9ef3b1'
'13753e4e0964f3652b0cc60a28528bdf'
'933dee67c58d452334d342c294342910'
'f28150d4c0b22a017be51b9f7f9977ed'
'6e488ffecc8ba142c0cf7e2d7aeb832e'
'8a9042a2cedf6b6b47eb8973f14289cb'
'b8355d9d2782f424f4cedcf682651be0'
'ef40305da5803ca69d22e428ffc2ab9b'
'e5d8323a4dbee7a6d0d2a19cbf4b819f'
'81b3cb42a6ddabc2ed2310511ee9c859'
'd41d8cd98f00b204e9800998ecf8427e'
'6f48288b6fcaf0065fcb7b0e525413e0'
'40dac0de4c6b99c8ca97effbd7527c84'
'5340b9287b71ffe9d4d99510bffe933f'
'ccc4e6292ae594f16b44c66c7769765c'
'8098ffd9fbf890468d3198277596b85a')
build()
{
cd ${pkgdir}
mkdir -p bin boot dev etc home lib media mnt proc root sbin tmp usr var opt srv sys
chmod 555 proc
mkdir -p usr/{bin,include,lib,sbin,share/misc,src}
mkdir -p usr/share/man/man{1,2,3,4,5,6,7,8}
# fhs compliance
mkdir -p usr/local/{bin,games,include,lib,man,sbin,share,src}
ln -s ../man ${pkgdir}/usr/local/share/man
mkdir -p var/{cache/man,local,lock,opt,run,spool/mail,tmp,games}
chmod 1777 var/lock
mkdir -p var/log/old
mkdir -p etc/{ld.so.conf.d,skel,profile.d}
mkdir -p lib/modules
mkdir -p var/lib/misc
(cd ${pkgdir}/var; ln -s spool/mail mail)
# vsftpd won't run with write perms on /srv/ftp
mkdir -p srv/ftp
chown root.ftp srv/ftp
chmod 555 srv/ftp
install -d -o root -g root -m 755 srv/http
chmod 1777 var/spool/mail tmp var/tmp
chmod 0750 root
#Allow setgid games to write scores:
chmod 775 ${pkgdir}/var/games
chown root:50 ${pkgdir}/var/games
cd ${srcdir}
cp fstab crypttab group host.conf hosts ld.so.conf motd nsswitch.conf \
passwd resolv.conf securetty shadow shells profile \
${pkgdir}/etc/
install -m 600 ${srcdir}/gshadow ${pkgdir}/etc/gshadow
chmod 600 ${pkgdir}/etc/shadow
chmod 600 ${pkgdir}/etc/crypttab
# re-add /etc/arch-release, some software uses it
# to check whether arch is running
touch ${pkgdir}/etc/arch-release
# Add /etc/modprobe.d/
install -D -m644 ${srcdir}/modprobe.d.usb-load-ehci-first \
${pkgdir}/etc/modprobe.d/usb-load-ehci-first.conf
# Prevent pacman from removing directory (FS#16886)
mkdir ${pkgdir}/var/empty
touch ${pkgdir}/var/empty/.keep
}
md5sums=('75c7e1770305e1f3b75c52785c137611'
'13753e4e0964f3652b0cc60a28528bdf'
'f97799ef3d8990f2eda9166122d8d5aa'
'f28150d4c0b22a017be51b9f7f9977ed'
'6e488ffecc8ba142c0cf7e2d7aeb832e'
'8a9042a2cedf6b6b47eb8973f14289cb'
'b8355d9d2782f424f4cedcf682651be0'
'ef40305da5803ca69d22e428ffc2ab9b'
'e5d8323a4dbee7a6d0d2a19cbf4b819f'
'81b3cb42a6ddabc2ed2310511ee9c859'
'd41d8cd98f00b204e9800998ecf8427e'
'6f48288b6fcaf0065fcb7b0e525413e0'
'40dac0de4c6b99c8ca97effbd7527c84'
'5340b9287b71ffe9d4d99510bffe933f'
'ccc4e6292ae594f16b44c66c7769765c'
'8098ffd9fbf890468d3198277596b85a')
|