File perl-EFL.spec of Package perl-EFL
#
# spec file for package perl-EFL
#
# Copyright (c) 2016 SUSE LINUX 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-EFL
Version: 0.501
Release: 0
%define cpan_name EFL
Summary: Perl bindings for the Enlightenment Foundation Libraries
License: LGPL-2.1+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/EFL/
Source0: http://www.cpan.org/authors/id/A/AF/AFLOTT/%{cpan_name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Sub::Exporter)
BuildRequires: perl(Test::More) >= 0.83
Requires: perl(Sub::Exporter)
Requires: perl(Test::More) >= 0.83
%{perl_requires}
%description
Perl bindings for the Enlightenment Foundation Libraries (EFL) Elementary
library. The API was deliberatly kept as close to 1-to-1 mapping of the
Elementary API as possible. Function parameters types and position are the
same as you would in C (deviations are documented), Evas_Object pointers
are just scalars, #defines are Perl constants, etc.
For example, the C way:
elm_win_screen_position_get(Evas_Object *obj, int *x, int *y);
This will be translated into the Perlish-C way as:
elm_win_screen_position_get($obj, \$x, \$y);
As opposed to the Perl way:
my ($x, $y) = elm_win_screen_position_get($obj);
This was intentional as the desired goal will to aid in porting to pure-C.
But with the power of Perl and CPAN, it will be easier for rapid
development and prototyping.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes Ecore Elementary Evas LICENSE misc README
%changelog