Browse Source

initial package creation

Signed-off-by: Toshaan Bharvani <toshaan@powerel.org>
master
Toshaan Bharvani 1 year ago
commit
4058ecba26
  1. 0
      SOURCES/.gitkeeper
  2. 46
      SPECS/atracdenc.spec

0
SOURCES/.gitkeeper

46
SPECS/atracdenc.spec

@ -0,0 +1,46 @@ @@ -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
Loading…
Cancel
Save