source: projects/specs/trunk/lib/libm/libmal/libmal-vl.spec @ 1961

Revision 1961, 1.9 KB checked in by inagaki, 14 years ago (diff)

update: libmal, google-gadgets, pilot-link

Line 
1%define version 0.44.1
2
3Summary: MAL (Mobil Application Link) library
4Name: libmal
5Version: %{version}
6Release: 2%{?_dist_release}
7
8Group: System Environment/Libraries
9License: MPL
10URL: http://www.jlogday.com/code/libmal/
11
12Source: http://http://www.jlogday.com/code/libmal/libmal-%{version}.tar.gz
13
14BuildRoot: %{_tmppath}/%{name}-%{version}-root
15BuildRequires: pilot-link-devel
16
17%description
18libmal is really just a convenience library of the functions in Tom Whittaker's
19malsync distribution, along with a few wrapper functions.
20
21%package devel
22Summary: Development files for libmal
23Group: Development/Libraries
24Requires: %{name} = %{version}-%{release}
25
26%description devel
27Development files for libmal
28
29%prep
30%setup -q
31
32%build
33%configure --disable-static FORCE_PILOT_LIBS=%{_libdir}
34make
35
36%install
37rm -rf $RPM_BUILD_ROOT
38make DESTDIR=$RPM_BUILD_ROOT install
39
40## remove unuse files
41rm -rf %{buildroot}%{_libdir}/*.la
42
43%clean
44rm -rf $RPM_BUILD_ROOT
45
46%post -p /sbin/ldconfig
47
48%postun -p /sbin/ldconfig
49
50%files
51%defattr(-,root,root)
52%doc README ChangeLog MPL-1_0.txt TODO
53%{_bindir}/*
54%{_libdir}/*.so.*
55
56%files devel
57%defattr(-,root,root)
58%{_includedir}/libmal/*
59%{_libdir}/*.so
60
61%changelog
62* Thu Sep 30 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.44.1-2
63- added BR: pilot-link-devel
64
65* Thu Apr 29 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.44.1-1
66- new upstream release
67- built with new toolchain
68- added --disable-static to %%configure
69
70* Mon Sep 08 2008 Shu KONNO <owa@bg.wakwak.com> 0.42-1vl5
71- applied new versioning policy
72- added FORCE_PILOT_LIBS to %%configure
73- removed *.la
74
75* Sat Dec  2 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.42-0vl1
76- new upstream release
77- rebuilt with new pilot-link
78- added %post and %postun section
79- changed Group to System Environment/Libraries
80
81* Mon Jul 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.31-0vl1
82- build for VineSeed
83
84* Tue Jan 21 2003 Jason Day <jasonday@worldnet.att.net>
85- Initial version
86
Note: See TracBrowser for help on using the repository browser.