mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
Add built packages for linux/386 to update-cargo_c Add built packages for linux/amd64 to update-cargo_c Add built packages for linux/armv7l to update-cargo_c Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com>
49 lines
1.4 KiB
Ruby
49 lines
1.4 KiB
Ruby
# Adapted from Arch Linux cargo-c PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-community/raw/packages/cargo-c/trunk/PKGBUILD
|
|
# NOTE: This package should be updated along with new Rust releases.
|
|
|
|
require 'package'
|
|
|
|
class Cargo_c < Package
|
|
description 'A cargo subcommand to build and install C-ABI compatible dynamic and static libraries'
|
|
homepage 'https://github.com/lu-zero/cargo-c/'
|
|
version '0.10.9'
|
|
license 'LGPL-2.1 and MPL-1.1'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/lu-zero/cargo-c.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '928c7aba982ee2bd9e9c3852cb8a3afee2ae6ac6a312ad388bade1d88e211ba8',
|
|
armv7l: '928c7aba982ee2bd9e9c3852cb8a3afee2ae6ac6a312ad388bade1d88e211ba8',
|
|
i686: '718ce19f3c72d4f24dc091c94d5213efbcc470829df2548d0f6d67f58067be79',
|
|
x86_64: 'c6ef004c68fe0077d4a8d43f58a035c6c0389020cb74b485f757d006abb9f173'
|
|
})
|
|
|
|
depends_on 'rust' => :build
|
|
depends_on 'curl' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'openssl' # R
|
|
depends_on 'zlib' # R
|
|
|
|
def self.build
|
|
system "cargo fetch \
|
|
--manifest-path Cargo.toml"
|
|
system "cargo build \
|
|
--release \
|
|
--frozen \
|
|
--manifest-path Cargo.toml"
|
|
end
|
|
|
|
def self.install
|
|
system "cargo install \
|
|
--frozen \
|
|
--offline \
|
|
--no-track \
|
|
--path . \
|
|
--root #{CREW_DEST_PREFIX}"
|
|
end
|
|
end
|