Init package

This commit is contained in:
dillon chen 2020-07-28 11:20:07 +08:00
parent c7e5a3a9fa
commit 24bb985a98
2 changed files with 52 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,52 @@
%global xfceversion 4.14
Name: thunar-media-tags-plugin
Version: 0.3.0
Release: 1
Summary: Media Tags plugin for the Thunar file manager
License: GPLv2+
#Group: Development/Libraries
URL: http://goodies.xfce.org/projects/thunar-plugins/%{name}
Source0: http://archive.xfce.org/src/thunar-plugins/%{name}/0.3/%{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
#BuildArch: noarch
BuildRequires: gcc-c++
BuildRequires: exo >= 0.12.0
BuildRequires: libxfce4util-devel >= %{xfceversion}
BuildRequires: libxml2-devel
BuildRequires: taglib-devel >= 1.4
BuildRequires: Thunar-devel >= 1.8.0
BuildRequires: intltool
BuildRequires: gettext
Requires: Thunar >= 1.8.0
%description
This plugin adds special features for media files to the Thunar file manager.
It includes a special media file page for the file properties dialog, a tag
editor for ID3 or OGG/Vorbis tags and a so-called bulk renamer, which allows
users to rename multiple audio files at once, based on their tags.
%prep
%setup -q
%build
%configure
%make_build
%install
%make_install
# remove la file
find %{buildroot} -type f -name "*.la" -exec rm -f {} ';'
%find_lang %{name}
%files -f %{name}.lang
%license COPYING
%doc AUTHORS ChangeLog README TODO
%{_libdir}/thunarx-*/%{name}.so
%changelog
* Tue Jul 28 2020 Dillon Chen <dillon.chen@turbolinux.com.cn> - 0.3.0-1
- Init package