source: projects/specs/trunk/lib/libm/libmowgli/libmowgli-vl.spec @ 1865

Revision 1865, 2.7 KB checked in by inagaki, 14 years ago (diff)

built with rpm-4.8.1: libcdio, libexif, libmowgli, libplist, libusb, exif, mcs

Line 
1Name:           libmowgli
2Summary:        An algorithm framework
3Summary(ja):    アルゴリズムフレームワーク
4Version:        0.7.0
5Release:        2%{?_dist_release}
6
7Group:          System Environment/Libraries
8License:        ISC
9URL:            http://atheme.org/projects/mowgli.shtml
10
11Source0:        http://distfiles.atheme.org/libmowgli-%{version}.tgz
12
13BuildRoot:       %{_tmppath}/%{name}-%{version}-root
14
15%description
16mowgli is a development framework for C (like GLib), which provides high
17performance and highly flexible algorithms. It can be used as a suppliment to
18GLib (to add additional functions (dictionaries, hashes), or replace some of
19the slow GLib list manipulation functions), or stand alone. It also provides a
20powerful hook system and convenient logging for your code, as well as a high
21performance block allocator.
22
23%package devel
24Summary:        Development files for libmowgli
25Summary(ja):    libmowgli の開発用ファイル
26Group:          Development/Libraries
27Requires:       %{name} = %{version}-%{release}
28
29%description devel
30mowgli is a development framework for C (like GLib), which provides high
31performance and highly flexible algorithms. It can be used as a suppliment to
32GLib (to add additional functions (dictionaries, hashes), or replace some of
33the slow GLib list manipulation functions), or stand alone. It also provides a
34powerful hook system and convenient logging for your code, as well as a high
35performance block allocator.
36
37This package contains the files necessary for writing programs that use
38libmowgli.
39
40%prep
41%setup -q
42# Make the build system more verbose
43perl -pi -e 's/^\.SILENT:.*$//' buildsys.mk.in
44
45# The build generates a wrong SONAME, fix it.
46perl -pi -e "s/-soname=.*'/-soname=\\\$\{LIB\}.\\\$\{LIB_MAJOR\}'/" configure
47
48%build
49%configure \
50    --disable-dependency-tracking
51
52make %{?_smp_mflags}
53
54%install
55rm -rf $RPM_BUILD_ROOT
56make install DESTDIR=$RPM_BUILD_ROOT
57
58%clean
59rm -rf $RPM_BUILD_ROOT
60
61%post -p /sbin/ldconfig
62
63%postun -p /sbin/ldconfig
64
65
66%files
67%defattr(-,root,root,-)
68%doc AUTHORS COPYING README
69%{_libdir}/*.so.*
70
71%files devel
72%defattr(-,root,root,-)
73%doc src/examples
74%{_libdir}/*.so
75%{_includedir}/libmowgli
76%{_libdir}/pkgconfig/libmowgli.pc
77
78%changelog
79* Tue Sep 21 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.7.0-2
80- rebuilt with rpm-4.8.1 for pkg-config
81
82* Sat Apr 25 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.7.0-1
83- new upstream release
84- changed Group to System Environment/Libraires
85
86* Thu Jul 10 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.0-1
87- initial build for Vine Linux
88
89* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.5.0-2
90- Autorebuild for GCC 4.3
91
92* Sat Nov 10 2007 Ralf Ertzinger <ralf@skytale.net> 0.5.0-1
93- Initial build for FE
Note: See TracBrowser for help on using the repository browser.