]> git.pld-linux.org Git - packages/detox.git/blame - detox.spec
- fix format string errors
[packages/detox.git] / detox.spec
CommitLineData
cc49e17e 1#
2# TODO: move samples to docs
3#
4Summary: Utility designed to clean up filenames
5Name: detox
6Version: 1.2.0
ff6d6680 7Release: 3
cc49e17e 8License: BSD-like
9Group: Applications
10Source0: http://downloads.sourceforge.net/detox/%{name}-%{version}.tar.gz
11# Source0-md5: 04f1bc8501cd40c21610ea3fee7a6fc5
ff6d6680 12Patch0: format-security.patch
cc49e17e 13URL: http://detox.sourceforge.net/
14#BuildRequires: -
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18detox is a utility designed to clean up filenames, especially those
19created on other operating systems. It replaces non-standard
20characters, such as spaces or Latin-1 characters, with standard
21equivalents.
22
23%prep
24%setup -q
ff6d6680 25%patch0 -p1
cc49e17e 26
27%build
28%configure
29%{__make}
30
31%install
32rm -rf $RPM_BUILD_ROOT
33
34%{__make} -j1 install \
35 DESTDIR=$RPM_BUILD_ROOT
36
37%clean
38rm -rf $RPM_BUILD_ROOT
39
40%files
41%defattr(644,root,root,755)
42%doc CHANGES README
43%attr(755,root,root) %{_bindir}/detox
44%attr(755,root,root) %{_bindir}/inline-detox
45%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/detoxrc
3c9c575e 46%dir %{_datadir}/detox
cc49e17e 47%{_datadir}/detox/*.tbl
48%{_mandir}/man1/detox*
49%{_mandir}/man5/detox*
This page took 0.060952 seconds and 4 git commands to generate.