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.
 

46 lines
765 B

%global debug_package %{nil}
%define build_timestamp %{lua: print(os.date("%Y%m%d"))}
Name: atracdenc
Version: 0.0.4
Release: %{dist}
Summary: Dirty implementation of ATRAC1, ATRAC3 encoder
License: BSD-3-Clause
BuildRequires: git
BuildRequires: cmake
BuildRequires: libsndfiles-devel
BuildRequires: make
Requires: libsndfiles
%description
Implementation of ATRAC1, ATRAC3 encoders
%prep
%setup -T -n %{name}-%{version}
git clone https://github.com/dcherednik/atracdenc .
%build
%cmake \
-DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
-DCMAKE_BUILD_TYPE=Release \
-DENABLE_PCH=true \
-DENABLE_PIPEWIRE=false \
.
%cmake_build
%install
%cmake_install
%clean
rm -rf %{buildroot}
%files
%{_bindir}/atracdenc
%doc