forked from mono/libgdiplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libgdiplus0.spec.in
65 lines (54 loc) · 1.53 KB
/
libgdiplus0.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
%define real_name libgdiplus
Name: libgdiplus0
Version: @VERSION@
Release: 0
License: LGPL v2.1 only ; MPL ; MIT License (or similar)
Url: http://go-mono.org/
Source0: %{real_name}-%{version}.tar.bz2
Summary: Open Source Implementation of the GDI+ API
Group: Development/Libraries/Other
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Obsoletes: libgdiplus-devel
Provides: libgdiplus-devel
Obsoletes: libgdiplus
Provides: libgdiplus
BuildRequires: cairo-devel >= 1.6.4
BuildRequires: fontconfig-devel
BuildRequires: giflib-devel
BuildRequires: glib2-devel
BuildRequires: libexif-devel
BuildRequires: libjpeg-devel
BuildRequires: libpng-devel
BuildRequires: libtiff-devel
%if 0%{?suse_version}
BuildRequires: freetype2-devel
%else
BuildRequires: freetype-devel
%endif
%description
This is part of the Mono project. It is required when using
Windows.Forms.
%files
%defattr(-, root, root)
%_libdir/libgdiplus.so*
%_libdir/pkgconfig/libgdiplus.pc
%doc AUTHORS COPYING ChangeLog* NEWS README.md
%prep
%setup -q -n %{real_name}-%{version}
%build
export CFLAGS="$RPM_OPT_FLAGS"
%configure
make
%install
make install DESTDIR=%{buildroot}
# Unwanted files:
rm -f %{buildroot}%{_libdir}/libgdiplus.a
rm -f %{buildroot}%{_libdir}/libgdiplus.la
# Remove generic non-usefull INSTALL file... (appeases
# suse rpmlint checks, saves 3kb)
find . -name INSTALL | xargs rm -f
%clean
rm -rf "$RPM_BUILD_ROOT"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%changelog