81 lines
1.8 KiB
RPMSpec
81 lines
1.8 KiB
RPMSpec
Name: animorph
|
|
Version: 0.2
|
|
Release: 2%{?dist}
|
|
Summary: 3D Animation and Morph Library
|
|
|
|
Group: System Environment/Libraries
|
|
License: GPLv2+
|
|
URL: http://www.dedalo-3d.com
|
|
Source0: http://downloads.sourceforge.net/makehuman/%{name}-%{version}.tar.gz
|
|
Patch0: animorph-0.2-pkgconfig.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
%description
|
|
3D Animation and Morph Library
|
|
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: pkgconfig
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1 -b .pkgconfig
|
|
|
|
%build
|
|
%configure --disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p -c"
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
# Removes doc
|
|
rm -rf $RPM_BUILD_ROOT%{_prefix}/doc
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS TODO
|
|
%{_libdir}/*.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
# License is GPLv2+ for these files
|
|
#./include/animorph/PoseSemiTarget.h
|
|
#./include/animorph/PoseTarget.h
|
|
#./src/PoseSemiTarget.cpp
|
|
#./src/PoseTarget.cpp
|
|
# Others files are LGPLv2+
|
|
# Check theses files when there is a new release.
|
|
%{_includedir}/%{name}/
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
|
|
%changelog
|
|
* Wed Sep 12 2007 kwizart < kwizart at gmail.com > - 0.2-2
|
|
- Change license to GPLv2+ as said in the source code
|
|
- Remove BR glibc-headers
|
|
- Change summary (taken from animorph.pc)
|
|
|
|
* Fri Jul 20 2007 kwizart < kwizart at gmail.com > - 0.2-1
|
|
- Initial spec file for Fedora
|