forked from pool/cargo-c
Marcus Rueckert
a5784c5a29
- Update to version 0.6.7 * https://github.com/lu-zero/cargo-c/releases/tag/v0.6.7 * https://github.com/lu-zero/cargo-c/releases/tag/v0.6.6 - Update to version 0.6.5 * https://github.com/lu-zero/cargo-c/releases/tag/v0.6.5 * https://github.com/lu-zero/cargo-c/releases/tag/v0.6.4 * https://github.com/lu-zero/cargo-c/releases/tag/v0.6.3 OBS-URL: https://build.opensuse.org/request/show/812442 OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/cargo-c?expand=0&rev=8
79 lines
2.1 KiB
RPMSpec
79 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package cargo-c
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
# Copyright (c) 2019 Andreas Schneider <asn@cryptomilk.org>.
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
Name: cargo-c
|
|
Version: 0.6.7
|
|
Release: 0
|
|
Summary: Helper to build and install c-like libraries from Rust
|
|
License: MIT
|
|
Group: Development/Languages/Rust
|
|
|
|
URL: https://crates.io/crates/cargo-c
|
|
#
|
|
Source0: https://github.com/lu-zero/cargo-c/archive/v%{version}/%{name}-%{version}.tar.gz
|
|
Source1: vendor.tar.xz
|
|
#
|
|
BuildRequires: rust-packaging
|
|
BuildRequires: pkgconfig(openssl)
|
|
|
|
%description
|
|
The is a cargo applet to build and install C-ABI compatibile dynamic and static
|
|
libraries from Rust.
|
|
|
|
It produces and installs a correct pkg-config file, a static library and a
|
|
dynamic library, and a C header to be used by any C (and C-compatible)
|
|
software.
|
|
|
|
%prep
|
|
%autosetup -a1 -p1
|
|
|
|
install -d -m 0755 .cargo
|
|
cat >.cargo/config <<EOF
|
|
[source.crates-io]
|
|
registry = 'https://github.com/rust-lang/crates.io-index'
|
|
replace-with = 'vendored-sources'
|
|
[source.vendored-sources]
|
|
directory = './vendor'
|
|
[build]
|
|
rustc = "%{__rustc}"
|
|
rustdoc = "%{__rustdoc}"
|
|
rustflags = %{__global_rustflags_toml}
|
|
[install]
|
|
root = '%{buildroot}%{_prefix}'
|
|
[term]
|
|
verbose = true
|
|
EOF
|
|
|
|
%build
|
|
%cargo_build
|
|
|
|
%install
|
|
%cargo_install
|
|
|
|
find %{buildroot} -name .crates2.json -delete
|
|
rm -rf %{buildroot}%{_datadir}/cargo/registry
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{_bindir}/cargo-cinstall
|
|
%{_bindir}/cargo-cbuild
|
|
|
|
%changelog
|