77 lines
2.4 KiB
RPMSpec
77 lines
2.4 KiB
RPMSpec
![]() |
#
|
||
|
# spec file for package perl-Net-MySQL
|
||
|
#
|
||
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||
|
#
|
||
|
# All modifications and additions to the file contributed by third parties
|
||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||
|
# upon. The license for this file, and modifications and additions to the
|
||
|
# file, is the same license as for the pristine package itself (unless the
|
||
|
# license for the pristine package is not an Open Source License, in which
|
||
|
# case the license is the MIT License). An "Open Source License" is a
|
||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||
|
# published by the Open Source Initiative.
|
||
|
|
||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
|
||
|
|
||
|
Name: perl-Net-MySQL
|
||
|
Version: 0.11
|
||
|
Release: 0
|
||
|
Summary: Pure Perl MySQL network protocol interface
|
||
|
Source: http://search.cpan.org/CPAN/authors/id/T/TS/TSUCCHI/Net-MySQL-%{version}.tar.gz
|
||
|
Url: http://search.cpan.org/dist/Net-MySQL
|
||
|
Group: Development/Libraries/Perl
|
||
|
License: GNU General Public License version 2 or later or Artistic (GPLv2+ or Artistic)
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
|
%{perl_requires}
|
||
|
BuildRequires: perl-macros
|
||
|
BuildRequires: make
|
||
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||
|
BuildRequires: perl(IO::Socket)
|
||
|
BuildRequires: perl(Digest::SHA1)
|
||
|
Requires: perl(IO::Socket)
|
||
|
Requires: perl(Digest::SHA1)
|
||
|
%if 0%{?suse_version} >= 1120
|
||
|
BuildArch: noarch
|
||
|
%endif
|
||
|
|
||
|
%description
|
||
|
Net::MySQL is a Pure Perl client interface for the MySQL database. This module
|
||
|
implements network protocol between server and client of MySQL, thus you don't
|
||
|
need external MySQL client library like libmysqlclient for this module to work.
|
||
|
It means this module enables you to connect to MySQL server from some operation
|
||
|
systems which MySQL is not ported. How nifty!
|
||
|
|
||
|
Since this module's final goal is to completely replace DBD::mysql, API is made
|
||
|
similar to that of DBI.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n "Net-MySQL-%{version}"
|
||
|
%__sed -i '/^auto_install/d' Makefile.PL
|
||
|
|
||
|
%build
|
||
|
%__perl Makefile.PL PREFIX="%{_prefix}"
|
||
|
%__make %{?_smp_flags}
|
||
|
|
||
|
%install
|
||
|
%perl_make_install
|
||
|
%perl_process_packlist
|
||
|
|
||
|
%check
|
||
|
%__make test
|
||
|
|
||
|
%clean
|
||
|
%{?buildroot:%__rm -rf "%{buildroot}"}
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%doc Changes README
|
||
|
%dir %{perl_vendorlib}/Net
|
||
|
%{perl_vendorlib}/Net/MySQL.pm
|
||
|
%doc %{perl_man3dir}/Net::MySQL.%{perl_man3ext}%{ext_man}
|
||
|
|
||
|
%changelog
|