12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- Name: baloo-widgets
- Summary: Widget library for baloo
- Summary(ja): baloo 用ウィジェットライブラリ
- Version: 4.14.3
- Release: 2%{?_dist_release}
- License: GPLv2
- Group: System Environment/Libraries
- URL: http://www.kde.org/
- Source: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.xz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: baloo-devel
- BuildRequires: kfilemetadata-devel
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- %{summary}.
- %package devel
- Summary: Development files for kdepim
- Summary(ja): %{name} の開発用ファイル
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- %description devel
- Development files for %{name}.
- Install %{name}-devel if you want to write or compile %{name} plugins.
- %prep
- %setup -q
- %build
- mkdir -p %{_target_platform}
- pushd %{_target_platform}
- %cmake \
- -DCMAKE_BUILD_TYPE=release \
- -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
- -DDATA_INSTALL_DIR:PATH=%{_datadir}/kde4/apps \
- -DINCLUDE_INSTALL_DIR:PATH=%{_includedir}/kde4 \
- -DLIB_INSTALL_DIR:PATH=%{_libdir} \
- -DLIBEXEC_INSTALL_DIR:PATH=%{_libexecdir}/kde4 \
- -DSYSCONF_INSTALL_DIR:PATH=%{_sysconfdir} \
- -DKDEPIM_BUILD_MOBILE:BOOL=OFF \
- ..
- popd
- make %{?_smp_mflags} -C %{_target_platform}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install/fast DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %doc COPYING COPYING.LIB COPYING.README
- %defattr(-,root,root,-)
- %{_libdir}/libbaloowidgets.so.*
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/kde4/baloo/*
- %{_libdir}/libbaloowidgets.so
- %{_libdir}/cmake/BalooWidgets/*.cmake
- %changelog
- * Mon Jul 04 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.14.3-2
- - rebuild with gcc-5.4.0
- * Thu Jan 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.14.3-1
- - initial build
- * Thu Jan 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.14.3-1
- - initial build
|