123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- Summary: GObject library for playing system sounds
- Summary(ja): システム音再生用 GObject ライブラリ
- Name: gsound
- Version: 1.0.2
- Release: 2%{?_dist_release}
- Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/1.0/%{name}-%{version}.tar.xz
- License: LGPLv2.1
- Group: System Environment/Libraries
- URL: https://wiki.gnome.org/Projects/GSound
- BuildRequires: glib2-devel
- BuildRequires: libcanberra-gtk3-devel
- BuildRequires: vala-devel
- BuildRequires: vala-tools
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- GSound is a small library for playing system sounds. It's designed to
- be used via GObject Introspection, and is a thin wrapper around the
- [libcanberra](http://0pointer.de/lennart/projects/libcanberra/) C library.
- %package devel
- Summary: Development tools for %{name}
- Summary(ja): %{name} の開発環境
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- Header files and libraries for building a extension library for the %{name}.
- %package docs
- Summary: Documentation for %{name}
- Summary(ja): %{name} 用のドキュメント
- Group: Documentation
- BuildArch: noarch
- %description docs
- This package contains documentation for %{name}.
- %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 '*.a' -exec rm -f {} \;
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
- %clean
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-,root,root,-)
- %license COPYING
- %doc ChangeLog NEWS README README.md
- %{_bindir}/gsound-play
- %{_libdir}/libgsound.so.*
- %{_libdir}/girepository-1.0/GSound-1.0.typelib
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/gsound*
- %{_libdir}/libgsound.so
- %{_libdir}/pkgconfig/%{name}.pc
- %{_datadir}/gir-1.0/GSound-1.0.gir
- %dir %{_datadir}/vala
- %dir %{_datadir}/vala/vapi
- %{_datadir}/vala/vapi/*
- %files docs
- %defattr(-,root,root,-)
- %{_datadir}/gtk-doc/html/%{name}
- %changelog
- * Mon Dec 31 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.0.2-2
- - added vala files.
- * Mon Jul 18 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.2-1
- - new upstream release
- * Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.1-1
- - initial build
|