12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- Summary: Weather application for GNOME
- Summary(ja): GNOME 用天気アプリケーション
- Name: gnome-weather
- Version: 3.8.1
- Release: 1%{?_dist_release}
- License: GPLv2+
- Group: User Interface/Deskops
- URL: https://live.gnome.org/Design/Apps/Weather
- Source: http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.8/%{name}-%{version}.tar.xz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: gtk3-devel
- BuildRequires: gjs-devel
- Requires(postun,posttrans): desktop-file-utils
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- This is a small application that allows you to monitor the current
- weather conditions for your city, or anywhere in the world, and to
- access updated forecasts provided by various internet services.
- %description -l ja
- gnome-weather は世界各地の現在の天候を表示し、様々なインターネット
- サービスで提供された天気予報にアクセスするための小さなアプリケーションです。
- %package devel
- Summary: Development tools for %{name}
- Summary(ja): %{name} の開発環境
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- Header files and libraries for building a extension library for the %{name}.
- %prep
- %setup -q
- %build
- %configure
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install DESTDIR=${RPM_BUILD_ROOT}
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
- %find_lang %{name}
- %clean
- rm -rf $RPM_BUILD_ROOT
- %postun
- if [ $1 -eq 0 ]; then
- update-desktop-database -q &> /dev/null ||:
- glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
- fi
- %posttrans
- update-desktop-database -q &> /dev/null ||:
- glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
- %files -f %{name}.lang
- %defattr(-,root,root,-)
- %doc NEWS
- %{_bindir}/%{name}
- %{_libdir}/%{name}/girepository-1.0/Gd-1.0.typelib
- %{_libdir}/%{name}/libgd.so
- %{_datadir}/applications/%{name}.desktop
- %{_datadir}/glib-2.0/schemas/org.gnome.Weather.Application.gschema.xml
- %{_datadir}/%{name}/*.js
- %{_datadir}/%{name}/gnome-weather.gresource
- %files devel
- %defattr(-,root,root,-)
- %{_datadir}/%{name}/gir-1.0/Gd-1.0.gir
- %changelog
- * Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.1-1
- - initial build
|