]> git.pld-linux.org Git - packages/crossmingw32-pixman.git/commitdiff
- new
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 13 Apr 2008 10:14:49 +0000 (10:14 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    crossmingw32-pixman.spec -> 1.1

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

diff --git a/crossmingw32-pixman.spec b/crossmingw32-pixman.spec
new file mode 100644 (file)
index 0000000..9642d4d
--- /dev/null
@@ -0,0 +1,118 @@
+Summary:       Pixel manipulation library - cross Mingw32
+Summary(pl.UTF-8):     Biblioteka operacji na pikselach - wersja skrośna Mingw32
+Name:          crossmingw32-pixman
+Version:       0.10.0
+Release:       1
+License:       MIT
+Group:         Development/Libraries
+Source0:       http://xorg.freedesktop.org/archive/individual/lib/pixman-%{version}.tar.bz2
+# Source0-md5: fb23e17a8a0308e8fad6dc153753ba9a
+URL:           http://xorg.freedesktop.org/
+BuildRequires: autoconf >= 2.57
+BuildRequires: automake
+BuildRequires: crossmingw32-gcc
+BuildRequires: crossmingw32-zlib
+BuildRequires: libtool
+BuildRequires: sed >= 4.0
+Requires:      crossmingw32-runtime
+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                _sysprefix              /usr
+%define                _prefix                 %{_sysprefix}/%{target}
+%define                _libdir                 %{_prefix}/lib
+%define                _pkgconfigdir           %{_prefix}/lib/pkgconfig
+%define                _dlldir                 /usr/share/wine/windows/system
+%define                __cc                    %{target}-gcc
+%define                __cxx                   %{target}-g++
+
+%description
+pixman is a pixel manipulation library.
+
+This package contains the cross version for Win32.
+
+%description -l pl.UTF-8
+pixman to biblioteka do operacji na pikselach.
+
+Ten pakiet zawiera wersję skrośną dla Win32.
+
+%package static
+Summary:       Static pixman library (cross mingw32 version)
+Summary(pl.UTF-8):     Statyczna biblioteka pixman (wersja skrośna mingw32)
+Group:         Development/Libraries
+Requires:      %{name} = %{version}-%{release}
+
+%description static
+Static pixman library (cross mingw32 version).
+
+%description static -l pl.UTF-8
+Statyczna biblioteka pixman (wersja skrośna mingw32).
+
+%package dll
+Summary:       DLL pixman library for Windows
+Summary(pl.UTF-8):     Biblioteka DLL pixman dla Windows
+Group:         Applications/Emulators
+Requires:      wine
+
+%description dll
+DLL pixman library for Windows.
+
+%description dll -l pl.UTF-8
+Biblioteka DLL pixman dla Windows.
+
+%prep
+%setup -q -n pixman-%{version}
+
+# disable gtk-based test
+:> test/Makefile.am
+# needed to build dll
+sed -i -e 's/^libpixman_1_la_LDFLAGS =/& -no-undefined/' pixman/Makefile.am
+
+%build
+%{__libtoolize}
+%{__aclocal}
+%{__autoconf}
+%{__autoheader}
+%{__automake}
+%configure \
+       --target=%{target} \
+       --host=%{target}
+
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT%{_dlldir}
+mv -f $RPM_BUILD_ROOT%{_prefix}/bin/*.dll $RPM_BUILD_ROOT%{_dlldir}
+
+%if 0%{!?debug:1}
+%{target}-strip --strip-unneeded -R.comment -R.note $RPM_BUILD_ROOT%{_dlldir}/*.dll
+%{target}-strip -g -R.comment -R.note $RPM_BUILD_ROOT%{_libdir}/*.a
+%endif
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README TODO
+%{_libdir}/libpixman-1.dll.a
+%{_libdir}/libpixman-1.la
+%{_includedir}/pixman-1
+%{_pkgconfigdir}/pixman-1.pc
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libpixman-1.a
+
+%files dll
+%defattr(644,root,root,755)
+%{_dlldir}/libpixman-1-*.dll
This page took 0.036123 seconds and 4 git commands to generate.