automatic version update by autodist [release 20221101-1mamba;Thu Nov 03 2022]
This commit is contained in:
parent
da050738ee
commit
3286936933
@ -1,12 +1,9 @@
|
|||||||
# libspiro
|
# libspiro
|
||||||
|
|
||||||
Spiro simplifies the drawing of beautiful curves.
|
Spiro simplifies the drawing of beautiful curves.
|
||||||
|
|
||||||
Using bézier splines an artist can easily draw curves with the same slope on either side of an on-curve point.
|
Using bézier splines an artist can easily draw curves with the same slope on either side of an on-curve point.
|
||||||
Spiros, on the other hand, are based on clothoid splines which make it easy to maintain constant curvature as well as constant slope.
|
Spiros, on the other hand, are based on clothoid splines which make it easy to maintain constant curvature as well as constant slope.
|
||||||
Such curves will simply look nicer.
|
Such curves will simply look nicer.
|
||||||
|
|
||||||
Spiro splines only use on-curve points and so are easier to use and more intuitive to the artist.
|
Spiro splines only use on-curve points and so are easier to use and more intuitive to the artist.
|
||||||
|
|
||||||
This library will take an array of spiro control points and convert them into a series of bézier splines which can then be used in the myriad of ways the world has come to use béziers.
|
This library will take an array of spiro control points and convert them into a series of bézier splines which can then be used in the myriad of ways the world has come to use béziers.
|
||||||
|
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
Name: libspiro
|
Name: libspiro
|
||||||
Version: 20220722
|
Version: 20221101
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: A library to simplify the drawing of beautiful curves
|
Summary: A library to simplify the drawing of beautiful curves
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Stefano Cotta Ramusino <stefano.cotta@openmamba.org>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: http://libspiro.sourceforge.net/
|
URL: https://libspiro.sourceforge.net/
|
||||||
Source: https://github.com/fontforge/libspiro.git/%{version}/libspiro-%{version}.tar.bz2
|
Source: https://github.com/fontforge/libspiro.git/%{version}/libspiro-%{version}.tar.bz2
|
||||||
License: GPL
|
License: GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
@ -15,13 +15,10 @@ BuildRequires: glibc-devel
|
|||||||
|
|
||||||
%description
|
%description
|
||||||
Spiro simplifies the drawing of beautiful curves.
|
Spiro simplifies the drawing of beautiful curves.
|
||||||
|
|
||||||
Using bézier splines an artist can easily draw curves with the same slope on either side of an on-curve point.
|
Using bézier splines an artist can easily draw curves with the same slope on either side of an on-curve point.
|
||||||
Spiros, on the other hand, are based on clothoid splines which make it easy to maintain constant curvature as well as constant slope.
|
Spiros, on the other hand, are based on clothoid splines which make it easy to maintain constant curvature as well as constant slope.
|
||||||
Such curves will simply look nicer.
|
Such curves will simply look nicer.
|
||||||
|
|
||||||
Spiro splines only use on-curve points and so are easier to use and more intuitive to the artist.
|
Spiro splines only use on-curve points and so are easier to use and more intuitive to the artist.
|
||||||
|
|
||||||
This library will take an array of spiro control points and convert them into a series of bézier splines which can then be used in the myriad of ways the world has come to use béziers.
|
This library will take an array of spiro control points and convert them into a series of bézier splines which can then be used in the myriad of ways the world has come to use béziers.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
@ -31,22 +28,17 @@ Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Spiro simplifies the drawing of beautiful curves.
|
Spiro simplifies the drawing of beautiful curves.
|
||||||
|
|
||||||
Using bézier splines an artist can easily draw curves with the same slope on either side of an on-curve point.
|
Using bézier splines an artist can easily draw curves with the same slope on either side of an on-curve point.
|
||||||
Spiros, on the other hand, are based on clothoid splines which make it easy to maintain constant curvature as well as constant slope.
|
Spiros, on the other hand, are based on clothoid splines which make it easy to maintain constant curvature as well as constant slope.
|
||||||
Such curves will simply look nicer.
|
Such curves will simply look nicer.
|
||||||
|
|
||||||
Spiro splines only use on-curve points and so are easier to use and more intuitive to the artist.
|
Spiro splines only use on-curve points and so are easier to use and more intuitive to the artist.
|
||||||
|
|
||||||
This library will take an array of spiro control points and convert them into a series of bézier splines which can then be used in the myriad of ways the world has come to use béziers.
|
This library will take an array of spiro control points and convert them into a series of bézier splines which can then be used in the myriad of ways the world has come to use béziers.
|
||||||
|
This package contains static libraries and header files needed for development.
|
||||||
This package contains static libraries and header files need for development.
|
|
||||||
|
|
||||||
%debug_package
|
%debug_package
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
autoreconf -f -i
|
autoreconf -f -i
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -60,7 +52,7 @@ autoreconf -f -i
|
|||||||
%clean
|
%clean
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -72,13 +64,15 @@ autoreconf -f -i
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_includedir}/*.h
|
%{_includedir}/*.h
|
||||||
%{_libdir}/libspiro.a
|
%{_libdir}/libspiro.a
|
||||||
%{_libdir}/libspiro.la
|
|
||||||
%{_libdir}/libspiro.so
|
%{_libdir}/libspiro.so
|
||||||
%{_libdir}/pkgconfig/libspiro.pc
|
%{_libdir}/pkgconfig/libspiro.pc
|
||||||
%{_mandir}/man3/libspiro.3*
|
%{_mandir}/man3/libspiro.3*
|
||||||
%doc README
|
%doc README
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Nov 03 2022 Automatic Build System <autodist@mambasoft.it> 20221101-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Sat Jul 23 2022 Automatic Build System <autodist@mambasoft.it> 20220722-1mamba
|
* Sat Jul 23 2022 Automatic Build System <autodist@mambasoft.it> 20220722-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user