6079b084af
this is a dependency of new gimp 2.8+, I need to push it to Factory OBS-URL: https://build.opensuse.org/request/show/102603 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libspiro?expand=0&rev=1
116 lines
2.8 KiB
RPMSpec
116 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package libspiro0
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define tarversion 20071029
|
|
%define libname libspiro
|
|
|
|
Name: libspiro0
|
|
Version: 0.0.1
|
|
Release: 1.1
|
|
Summary: A clothoid to bezier spline converter
|
|
License: BSD3c
|
|
Group: System/Libraries
|
|
Source0: %{libname}_src-%{tarversion}.tar.bz2
|
|
Url: http://libspiro.sourceforge.net
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: pkg-config
|
|
# bug437293
|
|
%ifarch ppc64
|
|
Obsoletes: %{name}-64bit
|
|
%endif
|
|
|
|
%description
|
|
libspiro contains routines which will convert an array of clothoid
|
|
spline control points into an equivalent set of bezier control points.
|
|
|
|
Authors
|
|
-------
|
|
Raph Levien <raph.levien@gmail.com>
|
|
George Williams <gww@silcom.com>
|
|
|
|
|
|
%package -n %{libname}-devel
|
|
License: BSD3c
|
|
Summary: Development Files for %{name}
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{name} = %{version} glibc-devel
|
|
# bug437293
|
|
%ifarch ppc64
|
|
Obsoletes: %{name}-devel-64bit
|
|
%endif
|
|
|
|
%description -n %{libname}-devel
|
|
This package contains all necessary include files and libraries needed
|
|
to compile and develop applications that use %{name}.
|
|
|
|
Authors
|
|
-------
|
|
Raph Levien <raph.levien@gmail.com>
|
|
George Williams <gww@silcom.com>
|
|
|
|
|
|
%prep
|
|
%setup -q -n %{libname}-%{tarversion}
|
|
|
|
%build
|
|
# autoreconf -fi
|
|
%configure --with-pic\
|
|
--disable-static
|
|
make %{?smp_mflags} CFLAGS="$RPM_OPT_FLAGS"
|
|
|
|
cat > %{libname}.pc << EOF
|
|
prefix=%{_prefix}
|
|
exec_prefix=%{_exec_prefix}
|
|
libdir=%{_libdir}
|
|
includedir=%{_includedir}
|
|
|
|
Name: %{name}
|
|
Description: %{summary}
|
|
Requires:
|
|
Version: %{name}
|
|
Libs: -L\${libdir} -lspiro -lm
|
|
Cflags: -I\${includedir}
|
|
EOF
|
|
|
|
%install
|
|
%makeinstall
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/pkgconfig/
|
|
mv *.pc $RPM_BUILD_ROOT%{_libdir}/pkgconfig/
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc gpl.txt README*
|
|
%{_libdir}/lib*.so.*
|
|
|
|
%files -n %{libname}-devel
|
|
%defattr(-,root,root)
|
|
%{_includedir}/*
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/*.pc
|
|
|
|
%changelog
|