]> git.pld-linux.org Git - SPECS.git/blob - mountall.spec
SPECS updated Tue 30 Apr 15:06:09 CEST 2024
[SPECS.git] / mountall.spec
1 # TODO
2 # - system libnih, remove noautoreq when done
3 Summary:        Filesystem mounting tool
4 Name:           mountall
5 Version:        1.0.2
6 Release:        0.3
7 License:        GPL v2+
8 Group:          Base
9 Source0:        https://launchpad.net/ubuntu/+archive/primary/+files/%{name}_%{version}.tar.gz
10 # Source0-md5:  1af4bd5309ffda85c5788236997df465
11 URL:            https://launchpad.net/ubuntu/+source/mountall
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  bison
15 BuildRequires:  expat-devel
16 BuildRequires:  gettext-tools
17 BuildRequires:  libnih-devel >= 1.0.0
18 BuildRequires:  pkgconfig
19 BuildRequires:  udev-devel >= 146
20 Requires:       upstart >= 0.6
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 # Filter GLIBC_PRIVATE Requires
24 %define         _noautoreq      (GLIBC_PRIVATE)
25
26 %define         _sbindir        /sbin
27
28 %description
29 mountall mounts filesystems when the underlying block devices are
30 ready, or when network interfaces come up, checking the filesystems
31 first.
32
33 %prep
34 %setup -qn %{name}
35
36 %build
37 %{__aclocal} -I m4
38 %{__autoconf}
39 %{__automake}
40 %configure \
41         NIH_DBUS_TOOL=nih-dbus-tool
42 %{__make}
43
44 %install
45 rm -rf $RPM_BUILD_ROOT
46 %{__make} install \
47         DESTDIR=$RPM_BUILD_ROOT
48
49 %clean
50 rm -rf $RPM_BUILD_ROOT
51
52 %files
53 %defattr(644,root,root,755)
54 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/init/mountall*.conf
55 %attr(755,root,root) %{_sbindir}/mountall
56 %{_mandir}/man8/mountall.8*
This page took 0.807855 seconds and 3 git commands to generate.