mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* gparted -> 1.8.1 in updater-gparted-1.8.1 * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * updater-gparted-1.8.1: Package File Update Run on linux/arm/v7 container. * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * Cleanup gparted. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update dependencies to use :executable instead of :executable_only Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
26 lines
959 B
Ruby
26 lines
959 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Parted < Autotools
|
|
description 'Create, destroy, resize, check, copy partitions and file systems.'
|
|
homepage 'https://www.gnu.org/software/parted/'
|
|
version '3.6-2'
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url "https://ftp.gnu.org/gnu/parted/parted-#{version.split('-').first}.tar.xz"
|
|
source_sha256 '3b43dbe33cca0f9a18601ebab56b7852b128ec1a3df3a9b30ccde5e73359e612'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'dec111ce508f4446d74dcbefa2e2ccb7c9424a8e651f4a75b0091ebc5cd0c45b',
|
|
armv7l: 'dec111ce508f4446d74dcbefa2e2ccb7c9424a8e651f4a75b0091ebc5cd0c45b',
|
|
i686: 'ed682917604cfd68e3acd47bb6a3441db47e8cea3f468245066cadc13662866a',
|
|
x86_64: '6c90b4c01a6275e5f09438a80c7f973042834fb801bd18cbd6dade603a843a9f'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'lvm2' # R
|
|
depends_on 'ncurses' => :executable
|
|
depends_on 'readline' => :executable
|
|
depends_on 'util_linux' # R
|
|
end
|