source: projects/specs/trunk/i/isomd5sum/isomd5sum-vl.spec @ 521

Revision 521, 2.2 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
2
3Summary: Utilities for working with md5sum implanted in ISO images
4Summary(ja): ISO イメージに埋め込まれた md5sum を処理するためのユーティリティ
5Name: isomd5sum
6Version: 1.0.4
7Release: 2%{?_dist_release}
8License: GPLv2+
9Group: Applications/System
10URL: http://git.fedorahosted.org/git/?p=isomd5sum.git;a=summary
11Source0: http://fedorahosted.org/releases/i/s/isomd5sum/%{name}-%{version}.tar.bz2
12BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
13BuildRequires: python-devel
14BuildRequires: popt-devel
15
16%description
17The isomd5sum package contains utilities for implanting and verifying
18an md5sum implanted into an ISO9660 image.
19
20%package devel
21Summary: Development headers and library for using isomd5sum
22Summary(ja): Development headers and library for using isomd5sum
23Group: Development/Libraries
24Requires: %{name} = %{version}-%{release}
25
26%description devel
27This contains header files and a library for working with the isomd5sum
28implanting and checking.
29
30
31%prep
32%setup -q
33
34%build
35make
36
37%install
38rm -rf $RPM_BUILD_ROOT
39make DESTDIR=$RPM_BUILD_ROOT install
40
41%clean
42rm -rf $RPM_BUILD_ROOT
43
44
45%files
46%defattr(-,root,root,-)
47%doc COPYING
48/usr/bin/implantisomd5
49/usr/bin/checkisomd5
50%{_mandir}/man*/*
51%{python_sitearch}/pyisomd5sum.so
52
53%files devel
54%defattr(-,root,root,-)
55%{_includedir}/*.h
56%{_libdir}/*.a
57
58%changelog
59* Wed Apr 22 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.4-2
60- changed devel Group to Development/Libraries
61
62* Tue Aug 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-1
63- initial build for Vine Linux
64
65* Thu Feb  7 2008 Jeremy Katz <katzj@redhat.com> - 1:1.0.4-1
66- Add man pages from Ryan Finnie (ryan AT finnie DOT org)
67- Use popt in checkisomd5 (Ryan Finnie)
68- Fix verbose/gauge interactions (Ryan Finnie)
69- A few other little janitorial things (Ryan Finnie)
70
71* Mon Dec 10 2007 Jeremy Katz <katzj@redhat.com> - 1:1.0.2-1
72- The "fix the build after changing the API" release
73
74* Mon Dec 10 2007 Jeremy Katz <katzj@redhat.com> - 1:1.0.1-1
75- Add some simple callback support in the library
76
77* Fri Dec  7 2007 Jeremy Katz <katzj@redhat.com> - 1.0-1
78- Initial build.
79
Note: See TracBrowser for help on using the repository browser.