package created using the webbuild interface [release 0.72-1mamba;Fri Oct 04 2024]
This commit is contained in:
parent
627d3b5ff1
commit
daa9093c44
@ -1,2 +1,4 @@
|
||||
# perl-OpenGL-GLUT
|
||||
|
||||
OpenGL::GLUT - Perl bindings to GLUT/FreeGLUT GUI toolkit.
|
||||
|
||||
|
70
perl-OpenGL-GLUT.spec
Normal file
70
perl-OpenGL-GLUT.spec
Normal file
@ -0,0 +1,70 @@
|
||||
%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0)
|
||||
|
||||
Name: perl-OpenGL-GLUT
|
||||
Version: 0.72
|
||||
Release: 1mamba
|
||||
Summary: OpenGL::GLUT - Perl bindings to GLUT/FreeGLUT GUI toolkit
|
||||
Group: System/Libraries/Perl
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: https://www.cpan.org
|
||||
Source: https://cpan.metacpan.org/authors/id/E/ET/ETJ/OpenGL-GLUT-%{version}.tar.gz
|
||||
License: GPL, Artistic
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: libICE-devel
|
||||
BuildRequires: libX11-devel
|
||||
BuildRequires: libXext-devel
|
||||
BuildRequires: libXi-devel
|
||||
BuildRequires: libXmu-devel
|
||||
BuildRequires: libfreeglut-devel
|
||||
BuildRequires: libglu-devel
|
||||
BuildRequires: libglvnd-devel
|
||||
BuildRequires: libperl
|
||||
BuildRequires: libstdc++6-devel
|
||||
BuildRequires: perl-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRequires: xorg-server-xvfb
|
||||
Requires: perl >= %perl_major_ver
|
||||
|
||||
%description
|
||||
OpenGL::GLUT - Perl bindings to GLUT/FreeGLUT GUI toolkit.
|
||||
|
||||
%prep
|
||||
%setup -q -n OpenGL-GLUT-%{version}
|
||||
|
||||
%build
|
||||
xvfb-run -a -s "+extension GLX -screen 0 1280x1024x24" \
|
||||
%{__perl} Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
||||
|
||||
%make
|
||||
|
||||
xvfb-run -a -s "+extension GLX -screen 0 1280x1024x24" \
|
||||
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 -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
|
||||
|
||||
#find %{buildroot} -name *.so -exec chmod u+w {} \;
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%files -f .packlist
|
||||
%defattr(-,root,root)
|
||||
|
||||
%changelog
|
||||
* Fri Oct 04 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 0.72-1mamba
|
||||
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user