commit 4058ecba2641e5eed3bdae2496979bb1ccb644e0 Author: Toshaan Bharvani Date: Mon Apr 10 11:22:49 2023 +0200 initial package creation Signed-off-by: Toshaan Bharvani diff --git a/SOURCES/.gitkeeper b/SOURCES/.gitkeeper new file mode 100644 index 0000000..e69de29 diff --git a/SPECS/atracdenc.spec b/SPECS/atracdenc.spec new file mode 100644 index 0000000..986b850 --- /dev/null +++ b/SPECS/atracdenc.spec @@ -0,0 +1,46 @@ +%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