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>
31 lines
1002 B
Ruby
31 lines
1002 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Mc < Autotools
|
|
description 'GNU Midnight Commander is a visual file manager'
|
|
homepage 'http://midnight-commander.org/'
|
|
version '4.8.33'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/MidnightCommander/mc.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e172ee211ea018e8b25000857b8ded88adcebaf0d1f965b977efb3a62b7fb8bb',
|
|
armv7l: 'e172ee211ea018e8b25000857b8ded88adcebaf0d1f965b977efb3a62b7fb8bb',
|
|
i686: '2076782eb634f221f3ce2e5cb8adcf8e95959920178a1b2d575679942014fb51',
|
|
x86_64: 'bd6a5409fdec7c666d211581808ac91e3f27d32ba80168d2532134696057f680'
|
|
})
|
|
|
|
depends_on 'aspell' => :build
|
|
depends_on 'check' => :build
|
|
depends_on 'e2fsprogs' => :executable
|
|
depends_on 'glib' => :executable
|
|
depends_on 'glibc' => :executable
|
|
depends_on 'gpm' => :executable
|
|
depends_on 'graphviz' => :build unless ARCH.eql?('i686')
|
|
depends_on 'slang' => :executable
|
|
|
|
run_tests
|
|
end
|