]> git.pld-linux.org Git - packages/crossmingw32-lib3ds.git/commitdiff
- new
authorwolf <wolf@pld-linux.org>
Thu, 25 Dec 2003 19:04:24 +0000 (19:04 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    crossmingw32-lib3ds.spec -> 1.1

crossmingw32-lib3ds.spec [new file with mode: 0644]

diff --git a/crossmingw32-lib3ds.spec b/crossmingw32-lib3ds.spec
new file mode 100644 (file)
index 0000000..d653c89
--- /dev/null
@@ -0,0 +1,108 @@
+%define                realname        lib3ds
+Summary:       The 3D Studio File Format Library - Mingw32 cross version
+Summary(pl):   Biblioteka obs³uguj±ca format plików 3D Studio - wersja skro¶na dla Mingw32
+Name:          crossmingw32-%{realname}
+Version:       1.2.0
+Release:       1
+License:       LGPL
+Group:         Libraries
+Source0:       http://dl.sourceforge.net/lib3ds/%{realname}-%{version}.tar.gz
+# Source0-md5: 3a7f891d18af0151876b98bc05d3b373
+Patch0:                %{name}-shared.patch
+URL:           http://lib3ds.sourceforge.net/
+BuildRequires: autoconf
+BuildRequires: automake
+BuildRequires: crossmingw32-gcc
+BuildRequires: crossmingw32-w32api
+BuildRequires: libtool
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define                no_install_post_strip   1
+
+%define                target          i386-mingw32
+%define                target_platform i386-pc-mingw32
+%define                arch            %{_prefix}/%{target}
+%define                gccarch         %{_prefix}/lib/gcc-lib/%{target}
+%define                gcclib          %{_prefix}/lib/gcc-lib/%{target}/%{version}
+
+%define                __cc            %{target}-gcc
+%define                __cxx           %{target}-g++
+
+%description
+lib3ds is a free alternative to Autodesk's 3DS File Toolkit for
+handling 3DS files. It's main goal is to simplify the creation of 3DS
+import and export filters.
+
+%description -l pl
+lib3ds to wolnodostêpna alternatywa dla 3DS File Toolkit Autodeska do
+obs³ugi plików 3DS. G³ównym celem biblioteki jest uproszczenie
+tworzenia filtrów importuj±cych i eksportuj±cych 3DS.
+
+%package dll
+Summary:       %{realname} - DLL library for Windows
+Summary(pl):   %{realname} - biblioteka DLL dla Windows
+Group:         Applications/Emulators
+
+%description dll
+%{realname} - DLL library for Windows.
+
+%description dll -l pl
+%{realname} - biblioteka DLL dla Windows.
+
+%prep
+%setup -q -n %{realname}-%{version}
+#%patch0 -p1
+
+%build
+CC=%{target}-gcc ; export CC
+CXX=%{target}-g++ ; export CXX
+LD=%{target}-ld ; export LD
+AR=%{target}-ar ; export AR
+AS=%{target}-as ; export AS
+CROSS_COMPILE=1 ; export CROSS_COMPILE
+CPPFLAGS="-I%{arch}/include" ; export CPPFLAGS
+RANLIB=%{target}-ranlib ; export RANLIB
+LDSHARED="%{target}-gcc -shared" ; export LDSHARED
+TARGET="%{target}" ; export TARGET
+
+tail -116 aclocal.m4 | head -102 > acinclude.m4
+%{__libtoolize}
+%{__aclocal}
+%{__autoconf}
+%{__autoheader}
+%{__automake}
+%configure
+
+%{__make}
+
+cd lib3ds
+%{__cc} --shared *.o -Wl,--enable-auto-image-base -o 3ds.dll -Wl,--out-implib,lib3ds.dll.a
+
+%if 0%{!?debug:1}
+%{target}-strip *.dll
+%{target}-strip -g -R.comment -R.note *.a
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{arch}/{include/lib3ds,lib}
+install -d $RPM_BUILD_ROOT%{_datadir}/wine/windows/system
+
+cd lib3ds
+
+install *.h $RPM_BUILD_ROOT%{arch}/include/lib3ds
+rm $RPM_BUILD_ROOT%{arch}/include/lib3ds/chunktable.h
+install lib3ds{,.dll}.a $RPM_BUILD_ROOT%{arch}/lib
+install 3ds.dll $RPM_BUILD_ROOT%{_datadir}/wine/windows/system
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%{arch}/include/*
+%{arch}/lib/*
+
+%files dll
+%defattr(644,root,root,755)
+%{_datadir}/wine/windows/system/*
This page took 0.097314 seconds and 4 git commands to generate.