123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- %define tagname GKEYFILE_SHARP_0_1
- %define relvers 0
- %define tsuffix g07a401a
- %define dsuffix 662c5c1
- %global debug_package %{nil}
- Name: gkeyfile-sharp
- Version: 0.1
- Release: 3%{?_dist_release}
- Summary: C# bindings for glib2's keyfile implementation
- Group: System Environment/Libraries
- License: LGPLv2
- URL: http://github.com/mono/%{name}
- # Releases are tarballs downloaded from a tag at github.
- # They are releases, but the file is generated on the fly.
- # The actual URL is: http://github.com/mono/$name/tarball/$tagname
- Source0: mono-%{name}-%{tagname}-%{relvers}-%{tsuffix}.tar.gz
- # Upstream patch to fix DllImport name of libglib (BZ 692784)
- # https://github.com/mono/gkeyfile-sharp/commit/1a1adb8ec4149b4a0a8e55db0e3baa172cbd2c3f
- Patch1: 0001-Change-glib-DllImports-to-libglib-2.0-0.dll.patch
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildRequires: autoconf
- BuildRequires: automake
- BuildRequires: glib2-devel
- BuildRequires: gtk-sharp2-gapi
- BuildRequires: gtk-sharp2-devel
- BuildRequires: mono-devel
- # Mono only available on these:
- ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 %{arm} sparcv9 alpha s390x
- Vendor: Project Vine
- Distribution: Vine Linux
- %package devel
- Summary: Development files for gkeyfile-sharp
- Group: Development/Libraries
- Requires: pkgconfig
- Requires: %{name} = %{version}-%{release}
- %description
- C# bindings for glib2's keyfile implementation
- %description devel
- Development files for gkeyfile-sharp
- %prep
- %setup -q -n mono-%{name}-%{dsuffix}
- %patch1 -p1 -b dllimport-fix
- %build
- ./autogen.sh
- %configure --libdir=%{_prefix}/lib
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install DESTDIR=$RPM_BUILD_ROOT
- chmod 644 `find $RPM_BUILD_ROOT%{_prefix}/lib/mono -name '*.dll.config'`
- rm -f $RPM_BUILD_ROOT%{_prefix}/lib/mono/%{name}/%{name}.dll.config
- mkdir -p %{buildroot}%{_libdir}/pkgconfig
- test "%{_libdir}" = "%{_prefix}/lib" || mv %{buildroot}%{_prefix}/lib/pkgconfig/*.pc %{buildroot}%{_libdir}/pkgconfig/
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root,-)
- %doc AUTHORS ChangeLog LICENSE.LGPL NEWS
- %{_prefix}/lib/mono/gac/%{name}
- %{_prefix}/lib/mono/%{name}
- %files devel
- %defattr(-,root,root,-)
- %{_libdir}/pkgconfig/%{name}.pc
- %changelog
- * Wed Apr 1 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.1-3
- - rebuilt with mono 3.12.1
- - moved to System Environment/Libraries Group
- * Sun Dec 29 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1-2
- - rebuild with VineSeed environment
- * Sun Jun 03 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1-9
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Thu Oct 27 2011 Christian Krause <chkr@fedoraproject.org> - 0.1-8
- - Change paths for mono assemblies according to updated packaging
- guidelines (http://fedoraproject.org/wiki/Packaging:Mono)
- * Sun May 08 2011 Christian Krause <chkr@fedoraproject.org> - 0.1-7
- - Add mono-devel as BR for correct generation of the Requires/Provides
- * Sun May 08 2011 Christian Krause <chkr@fedoraproject.org> - 0.1-6
- - Fix DllNotFoundException by adding upstream patch (BZ 692784)
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1-5
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Tue Jan 04 2011 Dan Horák <dan[at]danny.cz> - 0.1-4
- - updated the supported arch list
- * Mon Oct 04 2010 Nathaniel McCallum <nathaniel@natemccallum.com> - 0.1-3
- - Fix directory ownership
- * Sun Oct 03 2010 Nathaniel McCallum <nathaniel@natemccallum.com> - 0.1-2
- - Fix -devel requires (pkgconfig, base package)
- - Disable debuginfo
- * Wed Sep 29 2010 Nathaniel McCallum <nathaniel@natemccallum.com> - 0.1-1
- - Initial version
|