From f4c00d1d65b79931a6578bc39bb0d1758890de6e Mon Sep 17 00:00:00 2001 From: Automatic Build System Date: Sat, 6 Jan 2024 09:12:45 +0100 Subject: [PATCH] automatic update by autodist [release 0.54-1mamba;Fri Apr 04 2014] --- README.md | 4 +++ perl-Inline.spec | 70 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 perl-Inline.spec diff --git a/README.md b/README.md index 46661b7..2872460 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # perl-Inline +Inline lets you write Perl subroutines in other programming languages like C, C++, Java, Python, Tcl and even Assembly. +You don't need to compile anything. +All the details are handled transparently so you can just run your Perl script like normal. + diff --git a/perl-Inline.spec b/perl-Inline.spec new file mode 100644 index 0000000..7bbac15 --- /dev/null +++ b/perl-Inline.spec @@ -0,0 +1,70 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Inline +Version: 0.54 +Release: 1mamba +Summary: Inline - Write Perl subroutines in other programming languages +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Aleph0 +URL: http://www.cpan.org +Source: http://www.cpan.org/modules/by-module/Inline/Inline-%{version}.tar.gz +License: Artistic +Requires: perl >= %perl_major_ver +BuildRequires: perl-devel >= %perl_major_ver +BuildRequires: perl-Inline-Files +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Inline lets you write Perl subroutines in other programming languages like C, C++, Java, Python, Tcl and even Assembly. +You don't need to compile anything. +All the details are handled transparently so you can just run your Perl script like normal. + +%prep +%setup -q -n Inline-%{version} + +%build +perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor << EOF + +EOF + +%make +#% make test + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall_perl +packlist=`find %{buildroot} -name .packlist` +[ -z "$packlist" ] && exit 1 || cat $packlist | \ + sed "s,%buildroot,,g;s,.*/man/.*,&.gz,g" | \ + sort -u > .packlist && rm $packlist + +strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'` +for dir in `find %{buildroot} -type d | grep $strid`; do + echo "%dir ${dir#%buildroot}" >> .packlist +done + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +rm -f .packlist + +%files -f .packlist +%defattr(-,root,root) + +%changelog +* Fri Apr 04 2014 Automatic Build System 0.54-1mamba +- automatic update by autodist + +* Thu May 09 2013 Automatic Build System 0.53-1mamba +- automatic version update by autodist + +* Fri Feb 06 2009 Silvan Calarco 0.45-1mamba +- automatic update by autodist + +* Wed Nov 05 2008 Silvan Calarco 0.44-2mamba +- automatic rebuild by autodist + +* Fri Nov 23 2007 Aleph0 0.44-1mamba +- package created by autospec