]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blob - MAKEDEV/MAKEDEV.nm
kernel: update to 4.12.10
[people/arne_f/ipfire-3.x.git] / MAKEDEV / MAKEDEV.nm
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
5
6 name = MAKEDEV
7 version = 3.24
8 release = 2
9
10 groups = System/Base
11 url =
12 license = GPLv2
13 summary = A program used for creating device files in /dev.
14
15 description
16 This package contains the MAKEDEV program, which makes it easier to create
17 and maintain the files in the /dev directory. /dev directory files
18 correspond to a particular device supported by Linux (serial or printer
19 ports, scanners, sound cards, tape drives, CD-ROM drives, hard drives,
20 etc.) and interface with the drivers in the kernel.
21
22 You should install the MAKEDEV package because the MAKEDEV utility makes
23 it easy to manage the /dev directory device files.
24 end
25
26 sources = %{thisapp}-1.tar.gz
27
28 build
29 make_build_targets += OPTFLAGS="%{CFLAGS}"
30 make_install_targets += devdir=/dev makedevdir=/sbin
31
32 install_cmds
33 rm -f %{BUILDROOT}/dev/MAKEDEV
34 mkdir -pv %{BUILDROOT}/usr/share/man/man5
35 install -m 644 -p %{DIR_SOURCE}/makedev.d.5 \
36 %{BUILDROOT}/usr/share/man/man5
37 mkdir -pv %{BUILDROOT}/lib/udev/devices
38 ln -svf ../../../sbin/MAKEDEV \
39 %{BUILDROOT}/lib/udev/devices/MAKEDEV
40 end
41 end
42
43 packages
44 package %{name}
45 groups += Base
46
47 prerequires = shadow-utils
48 requires += udev
49
50 script prein
51 # Add the floopy group and the vcsa user.
52 getent group floppy >/dev/null || groupadd -g 19 -r -f floppy
53 getent group vcsa >/dev/null || groupadd -g 69 -r -f vcsa
54 getent passwd vcsa >/dev/null || \
55 useradd -r -g vcsa -d /dev -s /sbin/nologin -u 69 \
56 -c "virtual console memory owner" vcsa 2>/dev/null
57 end
58 end
59
60 package %{name}-debuginfo
61 template DEBUGINFO
62 end
63 end