You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
2.8 KiB
119 lines
2.8 KiB
# Default version for this component
|
|
%define kdecomp kstreamripper
|
|
%define version 0.3.4
|
|
%define release 1
|
|
|
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
|
%if "%{?_prefix}" != "/usr"
|
|
%define _variant .opt
|
|
%define _docdir %{_prefix}/share/doc
|
|
%endif
|
|
|
|
# TDE 3.5.13 specific building variables
|
|
BuildRequires: autoconf automake libtool m4
|
|
%define tde_docdir %{_docdir}/kde
|
|
%define tde_includedir %{_includedir}/kde
|
|
%define tde_libdir %{_libdir}/trinity
|
|
|
|
|
|
Name: trinity-%{kdecomp}
|
|
Summary: TDE frontend for streamripper
|
|
|
|
Version: %{?version}
|
|
Release: %{?release}%{?dist}%{?_variant}
|
|
|
|
License: GPLv2+
|
|
Group: Applications/Utilities
|
|
|
|
Vendor: Trinity Project
|
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
|
URL: http://www.trinitydesktop.org/
|
|
|
|
Prefix: %{_prefix}
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
|
|
|
Patch0: kstreamripper-3.5.13-missing_include_tqt.patch
|
|
|
|
BuildRequires: tqtinterface-devel
|
|
BuildRequires: trinity-arts-devel
|
|
BuildRequires: trinity-kdelibs-devel
|
|
BuildRequires: trinity-kdebase-devel
|
|
BuildRequires: desktop-file-utils
|
|
BuildRequires: scons
|
|
|
|
|
|
%description
|
|
KStreamRipper is a small frontend for the streamripper command
|
|
line utility. Streamripper captures internet shoutcast radio streams
|
|
on your harddisk and splits them up in mp3 files. KStreamRipper helps
|
|
you with managing/ripping your preferred streams.
|
|
|
|
|
|
%prep
|
|
%setup -q -n applications/%{kdecomp}
|
|
%patch0 -p1
|
|
|
|
%build
|
|
export PATH="%{_bindir}:${PATH}"
|
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
|
|
|
export CXXFLAGS="-I%{_includedir}/tqt"
|
|
|
|
%__make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
export PATH="%{_bindir}:${PATH}"
|
|
%__rm -rf %{buildroot}
|
|
%__make install DESTDIR=%{buildroot}
|
|
|
|
|
|
|
|
## File lists
|
|
# HTML (1.0)
|
|
HTML_DIR=$(kde-config --expandvars --install html)
|
|
if [ -d %{buildroot}$HTML_DIR ]; then
|
|
for lang_dir in %{buildroot}$HTML_DIR/* ; do
|
|
if [ -d $lang_dir ]; then
|
|
lang=$(basename $lang_dir)
|
|
echo "%lang($lang) $HTML_DIR/$lang/*" >> %{name}.lang
|
|
# replace absolute symlinks with relative ones
|
|
pushd $lang_dir
|
|
for i in *; do
|
|
[ -d $i -a -L $i/common ] && rm -f $i/common && ln -sf ../common $i/common
|
|
done
|
|
popd
|
|
fi
|
|
done
|
|
fi
|
|
|
|
|
|
%clean
|
|
%__rm -rf %{buildroot}
|
|
|
|
|
|
%post
|
|
/sbin/ldconfig
|
|
touch --no-create %{_datadir}/icons/hicolor || :
|
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
|
|
|
%postun
|
|
/sbin/ldconfig
|
|
touch --no-create %{_datadir}/icons/hicolor || :
|
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/kstreamripper
|
|
%{_datadir}/applnk/Utilities/kstreamripper.desktop
|
|
%{_datadir}/apps/kstreamripper/kstreamripperui.rc
|
|
%{tde_docdir}/HTML/en/en/index.cache.bz2
|
|
|
|
|
|
|
|
%Changelog
|
|
* Wed Nov 02 2011 Francois Andriot <francois.andriot@free.fr> - 0.3.4-1
|
|
- Initial release for TDE 3.5.13 on RHEL 6, RHEL 5 and Fedora 15
|