123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- Summary: PolicyKit integration for the MATE desktop
- Name: mate-polkit
- Version: 1.1.0
- Release: 2%{?_dist_release}
- Source0: %{name}-%{version}.tar.xz
- License: GPLv2
- Group: Applications/System
- URL: https://matsusoft.com.ar/projects/mate/
- BuildRequires: mate-common
- BuildRequires: gtk2-devel
- BuildRequires: polkit-devel
- BuildRequires: gtk-doc
- BuildRequires: autoconf
- BuildRequires: automake
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- PolicyKit-mate provides an Authentication Agent for PolicyKit that
- integrates well with the MATE desktop environment
- %package devel
- Summary: Development tools for mate-polkit
- Summary(ja): mate-polkit の開発環境
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- Header files and libraries for building a extension library for the
- mate-polkit.
- %prep
- %setup -q
- %build
- (if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; fi)
- %configure \
- --libexecdir=%{_libexecdir}/mate \
- --disable-static
- %{__make} %{?_smp_mflags}
- %install
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %{__make} install DESTDIR=${RPM_BUILD_ROOT}
- find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} \;
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
- %find_lang polkit-mate-1
- %clean
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files -f polkit-mate-1.lang
- %defattr(-,root,root,-)
- %doc COPYING ChangeLog NEWS README
- %{_sysconfdir}/xdg/autostart/polkit-mate-authentication-agent-1.desktop
- %{_libdir}/libpolkit-gtk-mate-1.so.*
- %{_libdir}/girepository-1.0/PolkitGtkMate-1.0.typelib
- %{_libexecdir}/mate/polkit-mate-authentication-agent-1
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/polkit-gtk-mate-1
- %{_libdir}/libpolkit-gtk-mate-1.so
- %{_libdir}/pkgconfig/polkit-gtk-mate-1.pc
- %{_datadir}/gir-1.0/PolkitGtkMate-1.0.gir
- %changelog
- * Fri Dec 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.0-2
- - change category
- * Fri Dec 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.0-1
- - initial build for Vine Linux
|