File capstone.spec of Package capstone
#
# spec file for package capstone
#
# Copyright (c) 2025 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%global _lto_cflags %{?_lto_cflags} -ffat-lto-objects
%define sover 5
Name: capstone
Version: 5.0.6
Release: 0
Summary: A multi-platform, multi-architecture disassembly framework
License: BSD-3-Clause
Group: Development/Tools/Building
URL: https://www.capstone-engine.org
Source: https://github.com/capstone-engine/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: ninja
BuildRequires: pkgconfig
BuildRequires: python-rpm-macros
BuildRequires: python3-setuptools
BuildRequires: pkgconfig(python3)
%description
Capstone is a disassembly framework.
disasm engine for binary analysis and reversing in the security community.
%package -n libcapstone%{sover}
Summary: A multi-platform, multi-architecture disassembly framework
Group: System/Libraries
%description -n libcapstone%{sover}
Capstone is a disassembly framework.
%package -n libcapstone-devel
Summary: Development files to build upon libcapstone
Group: Development/Libraries/C and C++
Requires: libcapstone%{sover} = %{version}
%description -n libcapstone-devel
Development files to build upon libcapstone, C language only.
%package -n libcapstone-devel-static
Summary: Static library for capstone
Group: Development/Libraries/C and C++
Requires: libcapstone-devel = %{version}
%description -n libcapstone-devel-static
Statically linked libcapstone.
%package doc
Summary: Documentation for capstone, a disassembly framework
Group: Documentation/Other
BuildArch: noarch
%description doc
Capstone is a multi-architecture disassembly framework.
%package -n python3-capstone
Summary: Python bindings for the Capstone disassembly framework
Group: Development/Languages/Python
BuildArch: noarch
%description -n python3-capstone
Capstone is a multi-architecture disassembly framework.
This package contains the Capstone bindings for Python.
%prep
%autosetup
%build
%define __builder ninja
%cmake \
-DBUILD_SHARED_LIBS=ON \
-DBUILD_STATIC_LIBS=ON \
-DCAPSTONE_BUILD_CSTEST=OFF \
-DCAPSTONE_BUILD_TESTS=OFF
%cmake_build
cd .. # back to the main source directory
pushd bindings/python/ || exit 1
%python3_build
popd || exit 1
%install
%cmake_install
install -m 755 -d %{buildroot}%{_docdir}/%{name}-doc/docs
install -m 644 -t %{buildroot}%{_docdir}/%{name}-doc/docs docs/README docs/*.pdf
# Available bindings: Java, OCaml, Python2 and Python3 (pure/C)
# Python3 bindings only for now
pushd bindings/python/
%python3_install
rm -rf %{buildroot}%{python3_sitelib}/%{name}/include
rm -rf %{buildroot}%{python3_sitelib}/%{name}/lib
popd
# fix pkgconfig file
sed -e '/^archive/d' -e 's|^libdir=.*|libdir=%{_libdir}|' \
-i %{buildroot}%{_libdir}/pkgconfig/%{name}.pc
%fdupes %{buildroot}
%ldconfig_scriptlets -n libcapstone%{sover}
%files
%license LICENSE*.TXT
%{_bindir}/cstool
%files -n libcapstone%{sover}
%{_libdir}/lib%{name}.so.%{sover}*
%files -n libcapstone-devel
%{_includedir}/%{name}
%{_libdir}/lib%{name}.so
%{_libdir}/pkgconfig/%{name}.pc
%{_libdir}/cmake/capstone/
%files -n libcapstone-devel-static
%{_libdir}/lib%{name}.a
%files -n python3-capstone
%{python3_sitelib}/%{name}/
%{python3_sitelib}/%{name}*.egg-info
%files doc
%license LICENSE*.TXT
%doc ChangeLog README.md
%{_docdir}/%{name}-doc/docs/
%changelog