Browse Source

flickrnet: new package, 2.2-1

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@1548 ec354946-7b23-47d6-9f5a-488ba84defc7
daisuke 13 years ago
parent
commit
899dbdaa52
1 changed files with 88 additions and 0 deletions
  1. 88 0
      f/flickrnet/flickrnet-vl.spec

+ 88 - 0
f/flickrnet/flickrnet-vl.spec

@@ -0,0 +1,88 @@
+Name:           flickrnet
+Version:        2.2
+Release:        1%{?_dist_release}
+Summary:        .NET library to interact with the Flickr API
+Summary(ja):    Flickr API を利用するための .NET ライブラリ
+Group:          Development/Libraries
+License:        LGPLv2
+URL:            http://www.codeplex.com/FlickrNet
+#http://www.codeplex.com/FlickrNet/Release/ProjectReleases.aspx?ReleaseId=3420#ReleaseFiles
+Source0:        FlickrNet2.2-Src-48055.zip
+Source1:        flickrnet.pc
+Patch0:         assemblyinfo.patch
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
+BuildRequires:  mono-devel
+
+ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 armv4l sparcv9 alpha s390 s390x
+
+%description
+The Flickr.Net API is a .NET Library for interacting with the Flickr API. It 
+can be accessed from with any .NET language.
+
+%package devel
+Summary:        Development files for Flickr.Net
+Summary(ja):    Flickr.Net の開発ファイル
+Group:          Development/Libraries
+Requires:       %{name} = %{version}-%{release}
+Requires:       pkgconfig
+
+%description devel
+The Flickr.Net API is a .NET Library for interacting with the Flickr API. It 
+can be accessed from any .NET language.
+
+The %{name}-devel package contains development files for %{name}.
+
+%prep
+%setup -cn FlickrNet -q
+cd FlickrNet
+%patch0 -p1
+
+sed 's|@LIBDIR@|%{_libdir}|g' %{SOURCE1} > flickrnet.pc
+
+%build
+cd FlickrNet
+gmcs -debug -target:library -out:FlickrNet.dll  -r:System.Web.dll -r:System.Drawing.dll *.cs
+
+%install
+rm -rf %{buildroot}
+cd FlickrNet
+gacutil -i FlickrNet.dll -package %{name} -root %{buildroot}%{_libdir}
+install -m 0755 -d %{buildroot}%{_libdir}/pkgconfig
+install -m 0644 -p flickrnet.pc %{buildroot}%{_libdir}/pkgconfig/
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%{_libdir}/mono/%{name}
+%{_libdir}/mono/gac/FlickrNet
+
+%files devel
+%defattr(-,root,root,-)
+%{_libdir}/pkgconfig/%{name}.pc
+
+%changelog
+* Thu Aug 05 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2-1
+- initial build for Vine Linux
+
+* Mon Jun 07 2010 Paul Lange <palango@gmx.de> - 2.2-4
+- Fix pkgconfig files.
+
+* Mon Oct 26 2009 Dennis Gilmore <dennis@ausil.us> - 2.2-3
+- enable sparcv9 s390 s390x
+
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Fri Jun 26 2009 Paul Lange <palango@gmx.de> - 2.2-1
+- Update to upstream release 2.2.
+
+* Thu Jun 25 2009 Juan Rodriguez <nushio@fedoraproject.org> - 2.1.5-3
+- Fix libdir on x86_64
+
+* Tue Jun 02 2009 Paul Lange <palango@gmx.de> - 2.1.5-2
+enable ppc64 build
+
+* Mon Jan 12 2009 Paul Lange <palango@gmx.de> 2.1.5-1
+- Initial packaging (based on openSuse package)