]> git.pld-linux.org Git - packages/confctl.git/blame - confctl.spec
- new
[packages/confctl.git] / confctl.spec
CommitLineData
b346615d
AG
1Summary: easy access to configuration files
2Summary(pl.UTF-8): łatwy dostęp do plików konfiguracyjnych
3Name: confctl
4Version: 1.2
5Release: 0.1
6License: BSD
7Group: Applications
8Source0: https://github.com/trasz/confctl/archive/%{version}.tar.gz
9# Source0-md5: b2abc044d2c1feaffea98406d10cae6f
10URL: https://github.com/trasz/confctl/
11BuildRequires: autoconf
12BuildRequires: automake
13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%description
16Confctl is a tool designed for easy access to configuration files in
17C-like syntax from shell scripts
18
19%description -l pl.UTF-8
20Confctl to narzędzie zaprojektowane do łatwego dostępu do plików
21konfiguracyjnych 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
36rm -rf $RPM_BUILD_ROOT
37
38%{__make} install \
39 DESTDIR=$RPM_BUILD_ROOT
40
41%clean
42rm -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.071997 seconds and 4 git commands to generate.