Logoj0ke.net Open Build Service > Projects > devel:perl > perl-IPC-ShareLite > Changes
Sign Up | Log In

Changes of Revision 2

[-] Added perl-IPC-ShareLite.spec
x
 
1
@@ -0,0 +1,47 @@
2
+%define modname    IPC-ShareLite
3
+Name:           perl-%{modname}
4
+Version:        0.13
5
+Release:        1
6
+Summary:        Light-Weight Interface to Shared Memory
7
+Requires:       perl = %{perl_version}
8
+BuildRequires:  perl
9
+License:        GPL/Artistic
10
+Group:          Development/Libraries/Perl
11
+Source:         %{modname}-%{version}.tar.bz2
12
+BuildRoot:      %{_tmppath}/%{name}-root
13
+
14
+%description
15
+IPC::ShareLite provides a simple interface to shared memory, allowing data to
16
+be efficiently communicated between processes.
17
+
18
+Authors:
19
+--------
20
+    Maurice Aubrey <maurice@hevanet.com>
21
+
22
+%prep
23
+%setup -q -n %{modname}-%{version}
24
+
25
+%build
26
+perl Makefile.PL OPTIMIZE="$RPM_OPT_FLAGS -Wall"
27
+make
28
+make test
29
+
30
+%install
31
+make DESTDIR=$RPM_BUILD_ROOT install_vendor
32
+%perl_process_packlist
33
+
34
+%clean
35
+rm -rf %{buildroot}
36
+
37
+%files
38
+%defattr(-, root, root)
39
+%doc Changes README
40
+%doc %{_mandir}/man?/*
41
+%{perl_vendorarch}/IPC
42
+%{perl_vendorarch}/auto/IPC
43
+/var/adm/perl-modules/%{name}
44
+
45
+%changelog
46
+
47
+* Thu Nov 01 2007 - James Oakley <jfunk@funktronics.ca> - 0.09-1
48
+- Initial release
49