update to 0.99.beta19 [release 0.99.beta19-1mamba;Wed Aug 28 2019]
This commit is contained in:
parent
429f4b79a9
commit
e585fd681a
68
libcaca.spec
68
libcaca.spec
@ -1,5 +1,5 @@
|
||||
Name: libcaca
|
||||
Version: 0.99.beta18
|
||||
Version: 0.99.beta19
|
||||
Release: 1mamba
|
||||
Summary: A library for Colour AsCii Art, text mode graphics
|
||||
Group: System/Libraries
|
||||
@ -13,21 +13,24 @@ Patch1: libcaca-0.99.beta18-mono-fix-x86_64-libdir.patch
|
||||
License: LGPL
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: libGL-devel
|
||||
BuildRequires: libGLU-devel
|
||||
BuildRequires: libX11-devel
|
||||
BuildRequires: libfreeglut-devel
|
||||
%if "%{stage1}" != "1"
|
||||
BuildRequires: libftgl-devel
|
||||
%endif
|
||||
BuildRequires: libgcc
|
||||
BuildRequires: libimlib2-devel
|
||||
BuildRequires: libncurses-devel
|
||||
BuildRequires: libpython-devel
|
||||
BuildRequires: libslang-devel
|
||||
BuildRequires: libstdc++6-devel
|
||||
BuildRequires: libX11-devel
|
||||
BuildRequires: libz-devel
|
||||
BuildRequires: ruby-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRequires: mono-devel
|
||||
BuildRequires: jdk
|
||||
BuildRequires: libGL-devel
|
||||
BuildRequires: libGLUT-devel
|
||||
BuildRequires: libpango-devel
|
||||
BuildRequires: doxygen
|
||||
@ -45,7 +48,7 @@ Group: Development/Libraries
|
||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
%if "%{stage1}" != "1"
|
||||
Requires: %{name}-java = %{?epoch:%epoch:}%{version}-%{release}
|
||||
Requires: %{name}-sharp = %{?epoch:%epoch:}%{version}-%{release}
|
||||
#Requires: %{name}-sharp = %{?epoch:%epoch:}%{version}-%{release}
|
||||
%endif
|
||||
|
||||
%description devel
|
||||
@ -97,6 +100,8 @@ This package contains utilities and demonstration programs for libcaca, the Colo
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
#-D -T
|
||||
#:<< _EOF
|
||||
#%patch0 -p1
|
||||
%patch1 -p1
|
||||
|
||||
@ -108,8 +113,13 @@ This package contains utilities and demonstration programs for libcaca, the Colo
|
||||
--enable-ncurses \
|
||||
--enable-slang \
|
||||
--enable-x11 \
|
||||
--disable-doc \
|
||||
--x-libraries=%{_libdir}
|
||||
|
||||
%ifarch arm
|
||||
export LD_PRELOAD=%{_libdir}/libatomic.so
|
||||
%endif
|
||||
|
||||
%make \
|
||||
%if "%{stage1}" == "1"
|
||||
CFLAGS="-I../caca"
|
||||
@ -123,7 +133,7 @@ This package contains utilities and demonstration programs for libcaca, the Colo
|
||||
%endif
|
||||
|
||||
# we want to include the docs ourselves from the source directory
|
||||
mv %{buildroot}%{_datadir}/doc/libcucul-dev installed-docs
|
||||
#mv %{buildroot}%{_datadir}/doc/libcucul-dev installed-docs
|
||||
rm -rf installed-docs/pdf
|
||||
|
||||
%clean
|
||||
@ -136,11 +146,12 @@ rm -rf installed-docs/pdf
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libcaca.so.*
|
||||
%{_libdir}/libcaca++.so.*
|
||||
%{_libdir}/libcucul.so.*
|
||||
%{_libdir}/libcucul++.so.*
|
||||
#%{_libdir}/libcucul.so.*
|
||||
#%{_libdir}/libcucul++.so.*
|
||||
%{_libdir}/ruby/site_ruby/*/*/caca.la
|
||||
%{_libdir}/ruby/site_ruby/*/*/caca.so
|
||||
%{_libdir}/ruby/site_ruby/*/caca.rb
|
||||
%doc AUTHORS COPYING
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
@ -149,43 +160,43 @@ rm -rf installed-docs/pdf
|
||||
%{_libdir}/libcaca.so
|
||||
%{_libdir}/libcaca++.la
|
||||
%{_libdir}/libcaca++.so
|
||||
%{_libdir}/libcucul.la
|
||||
%{_libdir}/libcucul.so
|
||||
%{_libdir}/libcucul++.la
|
||||
%{_libdir}/libcucul++.so
|
||||
#%{_libdir}/libcucul.la
|
||||
#%{_libdir}/libcucul.so
|
||||
#%{_libdir}/libcucul++.la
|
||||
#%{_libdir}/libcucul++.so
|
||||
%{_libdir}/jni/libcaca-java.la
|
||||
%{_libdir}/jni/libcaca-java.so
|
||||
%{_libdir}/pkgconfig/caca.pc
|
||||
%{_libdir}/pkgconfig/cucul.pc
|
||||
#%{_libdir}/pkgconfig/cucul.pc
|
||||
%{_includedir}/caca.h
|
||||
%{_includedir}/caca++.h
|
||||
%{_includedir}/caca_conio.h
|
||||
%{_includedir}/caca_types.h
|
||||
%{_includedir}/caca0.h
|
||||
%{_includedir}/cucul.h
|
||||
#%{_includedir}/cucul.h
|
||||
%{_libdir}/pkgconfig/caca++.pc
|
||||
%{_libdir}/pkgconfig/cucul++.pc
|
||||
#%{_libdir}/pkgconfig/cucul++.pc
|
||||
%{_mandir}/man1/caca-config.*
|
||||
%{_mandir}/man3/*
|
||||
%doc AUTHORS ChangeLog COPYING NEWS NOTES README THANKS
|
||||
#%{_mandir}/man3/*
|
||||
%doc ChangeLog NEWS NOTES README THANKS
|
||||
|
||||
%files java
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/jni/libcaca-java.so.*
|
||||
%{_datadir}/java/libjava.jar
|
||||
|
||||
%files sharp
|
||||
%defattr(-,root,root)
|
||||
%{_prefix}/lib/mono/caca-sharp-*/caca-sharp.dll
|
||||
%{_libdir}/mono/caca-sharp-*/caca-sharp.dll.config
|
||||
%{_prefix}/lib/mono/gac/caca-sharp/*/caca-sharp.dll
|
||||
%{_prefix}/lib/mono/gac/caca-sharp/*/caca-sharp.dll.config
|
||||
%{_prefix}/lib/mono/gac/caca-sharp/*/caca-sharp.dll.mdb
|
||||
#%files sharp
|
||||
#%defattr(-,root,root)
|
||||
#%{_prefix}/lib/mono/caca-sharp-*/caca-sharp.dll
|
||||
#%{_libdir}/mono/caca-sharp-*/caca-sharp.dll.config
|
||||
#%{_prefix}/lib/mono/gac/caca-sharp/*/caca-sharp.dll
|
||||
#%{_prefix}/lib/mono/gac/caca-sharp/*/caca-sharp.dll.config
|
||||
#%{_prefix}/lib/mono/gac/caca-sharp/*/caca-sharp.dll.mdb
|
||||
|
||||
%files -n python-caca
|
||||
%defattr(-,root,root)
|
||||
%dir %{python_sitearch}/caca
|
||||
%{python_sitearch}/caca/*
|
||||
%dir %{python_sitelib}/caca
|
||||
%{python_sitelib}/caca/*
|
||||
|
||||
%files -n caca-utils
|
||||
%defattr(-,root,root)
|
||||
@ -203,10 +214,13 @@ rm -rf installed-docs/pdf
|
||||
%{_mandir}/man1/cacaserver.*
|
||||
%{_mandir}/man1/cacaview.*
|
||||
%{_mandir}/man1/img2txt.*
|
||||
%{_datadir}/doc/libcaca-dev/html/*
|
||||
%{_datadir}/doc/libcaca-dev/pdf/libcaca.pdf
|
||||
#%{_datadir}/doc/libcaca-dev/html/*
|
||||
#%{_datadir}/doc/libcaca-dev/pdf/libcaca.pdf
|
||||
|
||||
%changelog
|
||||
* Wed Aug 28 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 0.99.beta19-1mamba
|
||||
- update to 0.99.beta19
|
||||
|
||||
* Sun Aug 26 2012 Automatic Build System <autodist@mambasoft.it> 0.99.beta18-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user