2007-01-16 00:31:33 +01:00
|
|
|
#
|
2011-11-17 16:46:27 +01:00
|
|
|
# spec file for package perl-Parse-Yapp
|
2007-01-16 00:31:33 +01:00
|
|
|
#
|
2013-02-27 14:37:35 +01:00
|
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-16 00:31:33 +01:00
|
|
|
#
|
2009-06-18 00:15:34 +02:00
|
|
|
# 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/
|
2007-01-16 00:31:33 +01:00
|
|
|
#
|
|
|
|
|
2009-06-18 00:15:34 +02:00
|
|
|
|
|
|
|
Name: perl-Parse-Yapp
|
|
|
|
Version: 1.05
|
2013-02-27 14:37:35 +01:00
|
|
|
Release: 0
|
2009-06-18 00:15:34 +02:00
|
|
|
Url: http://cpan.org/modules/by-module/Parse
|
|
|
|
Summary: Perl extension for generating and using LALR parsers
|
2013-02-27 20:06:55 +01:00
|
|
|
License: Artistic-1.0 or GPL-2.0+
|
2013-02-27 14:37:35 +01:00
|
|
|
Group: Development/Libraries/Perl
|
2011-11-17 16:46:27 +01:00
|
|
|
Source: Parse-Yapp-%{version}.tar.gz
|
2009-06-18 00:15:34 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-12-03 15:45:54 +01:00
|
|
|
%{perl_requires}
|
2010-10-19 13:11:06 +02:00
|
|
|
BuildRequires: perl
|
2010-12-03 15:45:54 +01:00
|
|
|
BuildRequires: perl-macros
|
2007-01-16 00:31:33 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
Parse::Yapp (Yet Another Perl Parser compiler) is a collection of
|
|
|
|
modules that let you generate and use yacc like thread safe (reentrant)
|
|
|
|
parsers with perl object oriented interface.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Francois Desarmenien <francois@fdesar.net>
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -n Parse-Yapp-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
perl Makefile.PL
|
2010-01-14 18:06:37 +01:00
|
|
|
make %{?_smp_mflags}
|
2007-01-16 00:31:33 +01:00
|
|
|
make test
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
|
|
|
%perl_process_packlist
|
|
|
|
chmod 644 README
|
|
|
|
chmod 644 $RPM_BUILD_ROOT/%{perl_vendorlib}/Parse/*.pm
|
|
|
|
chmod 644 $RPM_BUILD_ROOT/%{perl_vendorlib}/Parse/Yapp/*.pm
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%doc Changes README
|
|
|
|
%doc %{_mandir}/man?/*
|
|
|
|
%{perl_vendorlib}/Parse
|
|
|
|
%{perl_vendorarch}/auto/Parse
|
|
|
|
%{_bindir}/*
|
|
|
|
|
2009-06-18 00:15:34 +02:00
|
|
|
%changelog
|