source: projects/specs/trunk/lib/libd/libdaemon/libdaemon-vl.spec @ 1051

Revision 1051, 3.4 KB checked in by inagaki, 14 years ago (diff)

updated: libdaemon, jack-audio-connection-kit

Line 
1Summary: C library for writing of UNIX daemons
2Name: libdaemon
3Version: 0.14
4Release: 1%{_dist_release}
5Source0: %{name}-%{version}.tar.gz
6License: LGPLv2
7Group: System Environment/Libraries
8URL: http://0pointer.de/lennart/projects/libdaemon/
9BuildRoot: %{_tmppath}/%{name}-%{version}-root
10
11Vendor: Project Vine
12Distribution: Vine Linux
13
14%description
15libdaemon is a leightweight C library which eases the writing of UNIX daemons.
16Shared libraries and documents is included in this package.
17
18%package devel
19Summary: libdaemon developing environment
20Group: Development/Libraries
21Requires: %{name} = %{version}
22
23%description devel
24libdaemon is a leightweight C library which eases the writing of UNIX daemons.
25Environment for programming using libdaemon is included in devel pakcage.
26
27%prep
28%setup -q
29
30%build
31%configure --disable-static --disable-doxygen --disable-lynx
32make
33
34%install
35make DESTDIR=$RPM_BUILD_ROOT install
36make DESTDIR=$RPM_BUILD_ROOT install-pkgconfigDATA
37
38rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}
39
40%clean
41[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
42
43%post -p /sbin/ldconfig
44
45%postun -p /sbin/ldconfig
46
47%files
48%defattr(-,root,root)
49%doc LICENSE README doc/README.html doc/style.css
50%{_libdir}/%{name}.so.*
51
52%files devel
53%defattr(-,root,root)
54%doc LICENSE examples
55%{_includedir}/%{name}/
56%exclude %{_libdir}/%{name}.la
57%{_libdir}/%{name}.so
58%{_libdir}/pkgconfig/*
59
60%changelog
61* Fri May 21 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.14-1
62- new upstream release
63- removed static libraries from devel package
64
65* Wed Mar 04 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 0.13-1
66- new upstream release
67
68* Mon May 05 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 0.12-1
69- rebuild with new versioning policy
70
71* Sun Jul 22 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.12-0vl1
72- new upstream release
73
74* Sun Sep 17 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.10-0vl4
75- changed devel Group to Development/Libraries
76
77* Fri May 12 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
78- 0.10-0vl3
79- rebuild for VineSeed with gpg sign
80
81* Wed May 10 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
82- 0.10-0vl2
83- rebuild for VineSeed
84
85* Wed May 10 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
86- 0.10-0vl1
87- upstream release & build for VinePlus 3.x
88- update url
89
90* Sun Feb 12 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
91- 0.8-0vl3
92- rebuild for VineSeed
93
94* Wed Aug 31 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
95- 0.8-0vl2
96- upstream release for VinePlus 3.0/3.1/3.2
97- brush up doc files
98
99* Wed Aug 31 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
100- 0.8-0vl1
101- upstream release for VinePlus 2.5/2.6
102- brush up doc files
103
104* Sat Mar 26 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
105- 0.7-0vl2
106- upstream release for VinePlus 3.0/3.1
107
108* Fri Mar 25 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
109- 0.7-0vl1
110- upstream release for VinePlus 2.5/2.6
111
112* Thu Dec 02 2004 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
113- 0.6-0vl2
114- upstream release for VinePlus 3.0/3.1
115
116* Thu Dec 02 2004 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
117- 0.6-0vl1
118- upstream release for VinePlus 2.5/2.6
119
120* Fri Feb 27 2004 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
121- 0.5-0vl1
122- upstream release
123- add files list (pkgconfig data)
124
125* Sun Aug 03 2003 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
126- 0.2-0vl2
127- add Vendor / Distribution tag for VineLinux
128
129* Sat Aug 02 2003 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
130- 0.2-0vl1
131- for Vine 2.5/2.6
132
133
Note: See TracBrowser for help on using the repository browser.