12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- Summary: A quick previewer for Nautilus
- Name: sushi
- Version: 0.2.1
- Release: 1%{?_dist_release}
- Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/0.2/%{name}-%{version}.tar.xz
- License: GPLv2
- Group: User Interface/Desktops
- URL: https://live.gnome.org/ThreePointOne/Features/FilePreviewing
- BuildRequires: gtk3-devel >= 3.2.0
- BuildRequires: gtksourceview3-devel
- BuildRequires: gobject-introspection-devel >= 0.9.6
- BuildRequires: WebKit3-gtk-devel
- BuildRequires: clutter-gtk-devel
- BuildRequires: clutter-gst-devel
- BuildRequires: evince-devel
- BuildRequires: gjs-devel >= 0.7.7
- BuildRequires: gstreamer-devel
- BuildRequires: libmusicbrainz3-devel
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- Provide a facility for quickly viewing different kinds of files.
- This would be used by Nautilus in the first instance, but could
- be extended to the file chooser and perhaps elsewhere too.
- %package devel
- Summary: Development files for sushi
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- This package contains the libraries and header files that are needed
- for writing applications that are using sushi.
- %prep
- %setup -q
- %build
- %configure --disable-static
- %{__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
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files -f %{name}.lang
- %defattr(-,root,root,-)
- %doc AUTHORS COPYING NEWS README
- %{_bindir}/sushi
- %{_libexecdir}/sushi-start
- %{_libdir}/libsushi-1.0.so.*
- %{_libdir}/girepository-1.0/Sushi-1.0.typelib
- %{_datadir}/dbus-1/services/org.gnome.Sushi.service
- %{_datadir}/%{name}/js
- %{_datadir}/%{name}/style
- %files devel
- %defattr(-,root,root,-)
- %{_libdir}/libsushi-1.0.so
- %{_datadir}/gir-1.0/Sushi-1.0.gir
- %changelog
- * Sat Oct 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.1-1
- - initial build for Vine Linux
|