diff --git a/README.md b/README.md index 0e7773c..60fd5a6 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-X11-Protocol +X11::Protocol is a client-side interface to the X11 Protocol, allowing perl programs to display windows and graphics on X11 servers. + diff --git a/perl-X11-Protocol.spec b/perl-X11-Protocol.spec new file mode 100644 index 0000000..9d78d81 --- /dev/null +++ b/perl-X11-Protocol.spec @@ -0,0 +1,54 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-X11-Protocol +Version: 0.56 +Release: 1mamba +Summary: Perl module for the X Window System Protocol +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Stefano Cotta Ramusino +URL: http://www.cpan.org +Source: http://search.cpan.org/CPAN/authors/id/S/SM/SMCCAM/X11-Protocol-%{version}.tar.gz +License: GPL, Artistic +## AUTOBUILDREQ-BEGIN +BuildRequires: perl-devel +## AUTOBUILDREQ-END +Requires: perl >= %perl_major_ver +BuildRoot: %{_tmppath}/%{name}-%{version}-root +BuildArch: noarch + +%description +X11::Protocol is a client-side interface to the X11 Protocol, allowing perl programs to display windows and graphics on X11 servers. + +%prep +%setup -q -n X11-Protocol-%{version} + +%build +%{__perl} Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor OPTIMIZE="%{optflags}" +%make + +%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 -f $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}" + +%files -f .packlist +%defattr(-,root,root) +%doc README + +%changelog +* Wed Feb 19 2014 Stefano Cotta Ramusino 0.56-1mamba +- package created using the webbuild interface