source: projects/specs/trunk/lib/libs/libspiro/libspiro-vl.spec @ 7096

Revision 7096, 2.6 KB checked in by daisuke, 11 years ago (diff)

libspiro: new package

Line 
1Name:           libspiro
2Version:        20071029
3Release:        1%{?_dist_release}
4Summary:        Library to simplify the drawing of beautiful curves
5Summary(ja):    美しい曲線を簡単に描くことができるようにするライブラリ
6
7Group:          System Environment/Libraries
8License:        GPLv2+
9URL:            http://libspiro.sourceforge.net/
10Source0:        http://downloads.sourceforge.net/%{name}/%{name}_src-%{version}.tar.bz2
11BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
12
13%description
14This library will take an array of spiro control points and
15convert them into a series of bézier splines which can then
16be used in the myriad of ways the world has come to use béziers.
17
18%package        devel
19Summary:        Development files for %{name}
20Summary(ja):        Development files for %{name}
21Group:          Development/Libraries
22Requires:       %{name} = %{version}-%{release}
23
24%description    devel
25The %{name}-devel package contains libraries and header files for
26developing applications that use %{name}.
27
28%prep
29%setup -q -n libspiro-20071029
30
31%build
32%configure --disable-static
33make %{?_smp_mflags}
34
35%install
36rm -rf $RPM_BUILD_ROOT
37make install DESTDIR=$RPM_BUILD_ROOT
38find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
39
40%clean
41rm -rf $RPM_BUILD_ROOT
42
43
44%post -p /sbin/ldconfig
45
46%postun -p /sbin/ldconfig
47
48
49%files
50%defattr(-,root,root,-)
51%doc README gpl.txt README-RaphLevien
52%{_libdir}/*.so.*
53
54%files devel
55%defattr(-,root,root,-)
56%doc README gpl.txt README-RaphLevien
57%{_includedir}/*
58%{_libdir}/*.so
59
60%changelog
61* Sat Nov 10 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 20071029-1
62- initial build for Vine Linux
63
64* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071029-7
65- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
66
67* Tue Jan 10 2012 Nils Philippsen <nils@redhat.com> - 20071029-6
68- rebuild for gcc 4.7
69
70* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071029-5
71- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
72
73* Tue Dec 15 2009 Parag <paragn AT fedoraproject.org> - 20071029-4
74- Fix rpmlint error "libspiro.src:53: E: files-attr-not-set"
75
76* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071029-3
77- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
78
79* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071029-2
80- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
81
82* Tue Dec 16 2008 Kevin Fenzi <kevin@tummy.com> - 20071029-1
83- Initial version for Fedora
Note: See TracBrowser for help on using the repository browser.