Browse Source

libappindicator 12.10.0-1

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@11639 ec354946-7b23-47d6-9f5a-488ba84defc7
iwaim 6 years ago
parent
commit
f596d9c103
1 changed files with 71 additions and 0 deletions
  1. 71 0
      lib/liba/libappindicator/libappindicator-vl.spec

+ 71 - 0
lib/liba/libappindicator/libappindicator-vl.spec

@@ -0,0 +1,71 @@
+Summary: allow applications to export a menu into the Unity Menu bar
+Name: libappindicator
+Version: 12.10.0
+Release: 1%{?_dist_release}
+License: LGPLv3
+Group: System Environment/Libraries
+URL: https://launchpad.net/libappindicator
+Source0: %{name}-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+Vendor: Project Vine
+Distribution: Vine Linux
+Packager: iwaim
+
+BuildRequires: gtk3-devel >= 2.91
+BuildRequires: glib2-devel >= 2.26
+BuildRequires: libindicator-devel >= 0.4.93
+BuildRequires: libdbusmenu-gtk-devel >= 0.5.90
+BuildRequires: python-devel
+BuildRequires: pygtk2-devel >= 2.14.0
+BuildRequires: pygobject-devel 
+
+%description
+A library to allow applications to export a menu into the Unity Menu bar.
+Based on KSNI it also works in KDE and will fallback to generic Systray
+support if none of those are available.
+
+%package devel
+Summary: Header files and libraries for developing apps which will use %{name}
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+
+%description devel
+The %{name}-devel package contains the header files and libraries.
+
+%prep
+%setup -q
+
+%build
+export CFLAGS="%{optflags} $CFLAGS -Wno-deprecated-declarations"
+%configure --with-gtk=3
+make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%makeinstall
+
+%__rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}3.{a,la}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS COPYING ChangeLog NEWS README
+%{_libdir}/girepository-1.0/AppIndicator3-0.1.typelib
+%{_libdir}/%{name}3.so.*
+%{_datadir}/gir-1.0/AppIndicator3-0.1.gir
+%{_datadir}/gtk-doc/html/%{name}
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/%{name}3-0.1
+%{_libdir}/%{name}3.so
+%{_libdir}/pkgconfig/appindicator3-0.1.pc
+
+%changelog
+* Sun May 20 2018 IWAI, Masaharu <iwaim.sub@gmail.com> 12.10.0-1
+- Initial build.
+