]> git.pld-linux.org Git - packages/confctl.git/blob - confctl.spec
- new
[packages/confctl.git] / confctl.spec
1 Summary:        easy access to configuration files
2 Summary(pl.UTF-8):      łatwy dostęp do plików konfiguracyjnych
3 Name:           confctl
4 Version:        1.2
5 Release:        0.1
6 License:        BSD
7 Group:          Applications
8 Source0:        https://github.com/trasz/confctl/archive/%{version}.tar.gz
9 # Source0-md5:  b2abc044d2c1feaffea98406d10cae6f
10 URL:            https://github.com/trasz/confctl/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 Confctl is a tool designed for easy access to configuration files in
17 C-like syntax from shell scripts
18
19 %description -l pl.UTF-8
20 Confctl to narzędzie zaprojektowane do łatwego dostępu do plików
21 konfiguracyjnych z poziomu skryptów shella.
22
23 %prep
24 %setup -q
25
26 %build
27 %{__libtoolize}
28 %{__aclocal}
29 %{__autoconf}
30 %{__autoheader}
31 %{__automake}
32 %configure
33 %{__make}
34
35 %install
36 rm -rf $RPM_BUILD_ROOT
37
38 %{__make} install \
39         DESTDIR=$RPM_BUILD_ROOT
40
41 %clean
42 rm -rf $RPM_BUILD_ROOT
43
44 %files
45 %defattr(644,root,root,755)
46 %doc AUTHORS README TODO
47 %attr(755,root,root) %{_bindir}/*
48 %{_mandir}/man1/confctl.1*
This page took 0.060365 seconds and 3 git commands to generate.