- Fix license to be BSD-3-Clause
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/orc?expand=0&rev=27
This commit is contained in:
parent
f5020ecdd3
commit
87e1aa20b4
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 2 12:26:37 UTC 2012 - idonmez@suse.com
|
||||||
|
|
||||||
|
- Fix license to be BSD-3-Clause
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 1 11:09:49 UTC 2012 - dvaleev@suse.com
|
Wed Feb 1 11:09:49 UTC 2012 - dvaleev@suse.com
|
||||||
|
|
||||||
|
24
orc.spec
24
orc.spec
@ -16,14 +16,12 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Name: orc
|
Name: orc
|
||||||
Summary: The Oil Runtime Compiler
|
Summary: The Oil Runtime Compiler
|
||||||
Version: 0.4.16
|
License: BSD-3-Clause
|
||||||
Release: 1
|
|
||||||
License: BSD and Motorola License (please mark changes)
|
|
||||||
Group: Productivity/Multimedia/Other
|
Group: Productivity/Multimedia/Other
|
||||||
|
Version: 0.4.16
|
||||||
|
Release: 0
|
||||||
Url: http://code.entropywave.com/projects/orc/
|
Url: http://code.entropywave.com/projects/orc/
|
||||||
Source: http://code.entropywave.com/download/orc/%{name}-%{version}.tar.gz
|
Source: http://code.entropywave.com/download/orc/%{name}-%{version}.tar.gz
|
||||||
Source99: baselibs.conf
|
Source99: baselibs.conf
|
||||||
@ -32,7 +30,6 @@ BuildRequires: pkg-config
|
|||||||
Provides: %{name}-devel = %{version}
|
Provides: %{name}-devel = %{version}
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Orc is a library and set of tools for compiling and executing very simple
|
Orc is a library and set of tools for compiling and executing very simple
|
||||||
programs that operate on arrays of data. The “language” is a generic
|
programs that operate on arrays of data. The “language” is a generic
|
||||||
@ -41,11 +38,9 @@ architectures, including saturated addition and subtraction, and many
|
|||||||
arithmetic operations.
|
arithmetic operations.
|
||||||
|
|
||||||
%package -n liborc-0_4-0
|
%package -n liborc-0_4-0
|
||||||
License: BSD and Motorola License (please mark changes)
|
|
||||||
Summary: The Oil Runtime Compiler Library
|
Summary: The Oil Runtime Compiler Library
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
|
|
||||||
%description -n liborc-0_4-0
|
%description -n liborc-0_4-0
|
||||||
Orc is a library and set of tools for compiling and executing very simple
|
Orc is a library and set of tools for compiling and executing very simple
|
||||||
programs that operate on arrays of data. The “language” is a generic
|
programs that operate on arrays of data. The “language” is a generic
|
||||||
@ -54,11 +49,9 @@ architectures, including saturated addition and subtraction, and many
|
|||||||
arithmetic operations.
|
arithmetic operations.
|
||||||
|
|
||||||
%package doc
|
%package doc
|
||||||
License: BSD and Motorola License (please mark changes)
|
|
||||||
Summary: The Oil Runtime Compiler Library - Documentation
|
Summary: The Oil Runtime Compiler Library - Documentation
|
||||||
Group: Documentation/HTML
|
Group: Documentation/HTML
|
||||||
|
|
||||||
|
|
||||||
%description doc
|
%description doc
|
||||||
Orc is a library and set of tools for compiling and executing very simple
|
Orc is a library and set of tools for compiling and executing very simple
|
||||||
programs that operate on arrays of data. The “language” is a generic
|
programs that operate on arrays of data. The “language” is a generic
|
||||||
@ -69,14 +62,12 @@ arithmetic operations.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--enable-gtk-doc
|
--enable-gtk-doc
|
||||||
%{__make} %{?jobs:-j%jobs}
|
%{__make} %{?jobs:-j%jobs}
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%makeinstall
|
%makeinstall
|
||||||
# These are some examples that seem not to make sense to be distributed
|
# These are some examples that seem not to make sense to be distributed
|
||||||
@ -84,23 +75,18 @@ rm -rf %{buildroot}%{_libdir}/orc
|
|||||||
# Remove libtool archives
|
# Remove libtool archives
|
||||||
find %{buildroot}%{_libdir} -name '*.la' -delete -print
|
find %{buildroot}%{_libdir} -name '*.la' -delete -print
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%ifnarch ppc ppc64
|
%ifnarch ppc ppc64
|
||||||
make check
|
make check
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
%post -n liborc-0_4-0 -p /sbin/ldconfig
|
%post -n liborc-0_4-0 -p /sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
%postun -n liborc-0_4-0 -p /sbin/ldconfig
|
%postun -n liborc-0_4-0 -p /sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/orc-bugreport
|
%{_bindir}/orc-bugreport
|
||||||
@ -110,16 +96,12 @@ rm -rf %{buildroot}
|
|||||||
%{_libdir}/pkgconfig/orc-0.4.pc
|
%{_libdir}/pkgconfig/orc-0.4.pc
|
||||||
%{_datadir}/aclocal/orc.m4
|
%{_datadir}/aclocal/orc.m4
|
||||||
|
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_datadir}/gtk-doc/html/orc/
|
%{_datadir}/gtk-doc/html/orc/
|
||||||
|
|
||||||
|
|
||||||
%files -n liborc-0_4-0
|
%files -n liborc-0_4-0
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/liborc*-0.4.so.*
|
%{_libdir}/liborc*-0.4.so.*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user