]> git.pld-linux.org Git - packages/perl-Sys-MemInfo.git/blame - perl-Sys-MemInfo.spec
- rebuild with perl 5.28.0
[packages/perl-Sys-MemInfo.git] / perl-Sys-MemInfo.spec
CommitLineData
5b7ac99a
AM
1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
5%define pdir Sys
6%define pnam MemInfo
7%include /usr/lib/rpm/macros.perl
8Summary: Sys::MemInfo - query the total free and used physical memory
9Name: perl-Sys-MemInfo
10Version: 0.99
19f81304 11Release: 2
5b7ac99a
AM
12License: GPL v1+ or Artistic
13Group: Development/Languages/Perl
14Source0: http://www.cpan.org/modules/by-module/Sys/%{pdir}-%{pnam}-%{version}.tar.gz
15# Source0-md5: 88f0632691d7de91cbed95ba1ff29025
16URL: https://metacpan.org/release/Sys-MemInfo/
17BuildRequires: perl-devel >= 1:5.8.0
18BuildRequires: rpm-perlprov >= 4.1-13
19%if %{with tests}
20%endif
21BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23%description
24Sys::MemInfo return the total amount of free and used physical memory in bytes in totalmem and freemem variables.
25
26Total amount of free and user swap memory are alse returned in totalswap and freeswap variables.
27
28This module has been tested on Linux 3.13.0, UnixWare 7.1.2, AIX5, OpenBSD 3.8,
29NetBSD 2.0.2, FreBSD 5.4, HPUX11, Solaris 9, Tru64 5.1, Irix 6.5, Mac OS X 10.2 darwin and Windows XP.
30
31It should work on FreeBSD 4 and Windows 9X/ME/NT/200X/Vista.
32
33%prep
34%setup -q -n %{pdir}-%{pnam}-%{version}
35
36%build
37%{__perl} Makefile.PL \
38 INSTALLDIRS=vendor
39%{__make} \
40 CC="%{__cc}" \
41 OPTIMIZE="%{rpmcflags}"
42
43%{?with_tests:%{__make} test}
44
45%install
46rm -rf $RPM_BUILD_ROOT
47
48%{__make} pure_install \
49 DESTDIR=$RPM_BUILD_ROOT
50
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%files
55%defattr(644,root,root,755)
56%doc Changes README
57%{perl_vendorarch}/Sys/MemInfo.pm
58%dir %{perl_vendorarch}/auto/Sys/MemInfo
59%attr(755,root,root) %{perl_vendorarch}/auto/Sys/MemInfo/MemInfo.so
60%{_mandir}/man3/Sys::MemInfo.3pm*
This page took 0.071195 seconds and 4 git commands to generate.