8
0
Files
perl-Class-XPath/perl-Class-XPath.spec

77 lines
2.2 KiB
RPMSpec
Raw Normal View History

#
# spec file for package perl-Class-XPath (Version 1.4)
#
# Copyright (c) 2010 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/
#
# norootforbuild
Name: perl-Class-XPath
BuildRequires: perl-HTML-Tree
Version: 1.4
Release: 143
AutoReqProv: on
Group: Development/Libraries/Perl
License: Artistic
Url: http://search.cpan.org/~samtregar/
Summary: adds xpath matching to object trees
Source: Class-XPath-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This module adds XPath-style matching to your object trees. This means
that you can find nodes using an XPath-esque query with match() from
anywhere in the tree. Also, the xpath() method returns a unique path to
a given node which can be used as an identifier.
To use this module you must already have an OO implementation of a
tree. The tree must be a true tree - all nodes have a single parent and
the tree must have a single root node. Also, the order of children
within a node must be stable.
NOTE: This module is not yet a complete XPath implementation. Over time
I expect the subset of XPath supported to grow. See the SYNTAX
documentation for details on the current level of support.
Authors:
--------
sam@tregar.com
%prep
%setup -n Class-XPath-%{version} -q
%build
perl Makefile.PL
make %{?_smp_mflags}
make test
%install
%perl_make_install
%perl_process_packlist
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-, root, root)
%doc README Changes
%doc %{_mandir}/man?/*
%{perl_vendorarch}/auto/Class
%{perl_vendorlib}/Class
%changelog