12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- Summary: Nautilus iDeviceInfo
- Name: nautilus-ideviceinfo
- Version: 0.1.0
- Release: 1%{?_dist_release}
- URL: http://www.libimobiledevice.org/
- Group: User Interface/Desktops
- License: GPLv2+
- Source: %{name}-%{version}.tar.bz2
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: libimobiledevice-devel
- BuildRequires: libplist-devel
- BuildRequires: nautilus-devel
- BuildRequires: libgpod-devel >= 0.7.93
- Requires: nautilus
- %description
- Nautilus-iDeviceInfo is a nautilus extension showing extended device
- information in the nautilus properties dialog. It shows details like
- serial number, software version, baseband/modem firmware version, and
- storage usage (with nice eye candy).
- %prep
- %setup -q
- %build
- export CFLAGS="$RPM_OPT_FLAGS"
- %configure
- %__make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- %__make DESTDIR=$RPM_BUILD_ROOT install
- rm -f $RPM_BUILD_ROOT/%{_libdir}/nautilus/extensions-2.0/*.{l,}a
- %find_lang %{name}
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files -f %{name}.lang
- %defattr (-, root, root)
- %doc AUTHORS COPYING NEWS README
- %{_libdir}/nautilus/extensions-2.0/*.so
- %{_libdir}/nautilus/extensions-2.0/*.ui
- %changelog
- * Sat Jun 26 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.1.0-1
- - initial build
|