]> git.pld-linux.org Git - packages/libmowgli2.git/commitdiff
- init
authorarvenil <arvenil@pld-linux.org>
Sat, 21 Jul 2007 17:09:47 +0000 (17:09 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    libmowgli.spec -> 1.1

libmowgli.spec [new file with mode: 0644]

diff --git a/libmowgli.spec b/libmowgli.spec
new file mode 100644 (file)
index 0000000..0dd8f81
--- /dev/null
@@ -0,0 +1,60 @@
+# TODO:
+# - pl summary && description
+Summary:       Development framework for C (like GLib)
+Name:          libmowgli
+Version:       0.2.0
+Release:       0.1
+License:       BSD
+Group:         Libraries
+Source0:       http://sacredspiral.co.uk/~nenolod/mowgli/%{name}-%{version}.tgz
+# Source0-md5: 3b0c9f8c1cae32632660dc89f747685a
+URL:           http://www.atheme-project.org/projects/mowgli.shtml
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+mowgli is a development framework for C (like GLib), which provides
+high performance and highly flexible algorithms. It can be used as a
+suppliment to GLib (to add additional functions (dictionaries,
+hashes), or replace some of the slow GLib list manipulation
+functions), or stand alone. It also provides a powerful hook system
+and convenient logging for your code, as well as a high performance
+block allocator.
+
+%package devel
+Summary:        Header files for libmowgli
+Group:          Development/Libraries
+Requires:       %{name} = %{version}-%{release}
+
+%description devel
+Header files for libmowgli.
+
+%prep
+%setup -q
+
+%build
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post   -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS README
+%attr(755,root,root) %{_libdir}/libmowgli.so.*.*.*
+%ghost %attr(755,root,root) %{_libdir}/libmowgli.so.?
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libmowgli.so
+%{_includedir}/libmowgli
+%{_pkgconfigdir}/libmowgli.pc
This page took 0.050463 seconds and 4 git commands to generate.