File alac.spec of Package alac
#
# spec file for package alac
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: alac
%define lname libalac0
Version: 0+r3
Release: 0
Summary: Apple Lossless Audio Codec
License: Apache-2.0
Group: Productivity/Multimedia/Sound/Editors and Convertors
Url: http://alac.macosforge.org/
#SVN-Clone: http://svn.macosforge.org/repository/alac/trunk/
Source: alac-r3.tar.bz2
Patch1: libalac-makefile.patch
Patch2: alac-endian.patch
BuildRequires: gcc-c++
BuildRequires: pkg-config
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
The Apple Lossless Audio Codec (ALAC) is an audio codec developed by Apple and
supported on iPhone, iPad, most iPods, Mac and iTunes. ALAC is a data
compression method which reduces the size of audio files with no loss of
information. A decoded ALAC stream is bit-for-bit identical to the original
uncompressed audio file.
This package contains a command-line utility to convert the ALAC format.
%package -n %{lname}
Summary: Apple Lossless Audio Codec
Group: System/Libraries
%description -n %{lname}
The Apple Lossless Audio Codec (ALAC) is an audio codec developed by Apple and
supported on iPhone, iPad, most iPods, Mac and iTunes. ALAC is a data
compression method which reduces the size of audio files with no loss of
information. A decoded ALAC stream is bit-for-bit identical to the original
uncompressed audio file.
%package -n libalac-devel
Summary: Apple Lossless Audio Codec
Group: Development/Libraries/C and C++
Requires: %{lname} = %{version}-%{release}
%description -n libalac-devel
The Apple Lossless Audio Codec (ALAC) is an audio codec developed by Apple and
supported on iPhone, iPad, most iPods, Mac and iTunes. ALAC is a data
compression method which reduces the size of audio files with no loss of
information. A decoded ALAC stream is bit-for-bit identical to the original
uncompressed audio file.
%prep
%setup -qn %{name}
%patch1 -p1
%patch2 -p1
%build
for d in codec convert-utility; do
make -C "$d" \
OPTFLAGS="%{optflags} -fvisibility-inlines-hidden -fno-strict-aliasing -D_GNU_SOURCE $(getconf LFS_CFLAGS)" \
CC="g++"
done
%install
install -D -m0755 convert-utility/alacconvert "%{buildroot}%{_bindir}/alacconvert"
install -d "%{buildroot}%{_includedir}"
cp -a codec/*.h "%{buildroot}%{_includedir}/"
install -d "%{buildroot}%{_libdir}"
cp -a codec/libalac.so* "%{buildroot}%{_libdir}/"
%post -n %{lname} -p /sbin/ldconfig
%postun -n %{lname} -p /sbin/ldconfig
%files -n %{lname}
%defattr(-,root,root)
%doc codec/APPLE_LICENSE.txt LICENSE
%{_libdir}/libalac.so.0
%{_libdir}/libalac.so.0.3
%files -n libalac-devel
%defattr(-,root,root)
%doc codec/APPLE_LICENSE.txt LICENSE
%{_includedir}/*.h
%{_libdir}/libalac.so
%files
%defattr(-,root,root)
%doc codec/APPLE_LICENSE.txt LICENSE
%{_bindir}/alacconvert
%changelog