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>
39 lines
1.2 KiB
Ruby
39 lines
1.2 KiB
Ruby
require 'package'
|
|
|
|
class Zile < Package
|
|
description 'A small, fast, and powerful Emacs clone'
|
|
homepage 'http://www.gnu.org/software/zile/'
|
|
version '2.6.4'
|
|
license 'GPL-3+'
|
|
compatibility 'all'
|
|
source_url 'https://ftp.gnu.org/gnu/zile/zile-2.4.14.tar.gz'
|
|
source_sha256 '7a78742795ca32480f2bab697fd5e328618d9997d6f417cf1b14e9da9af26b74'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '84e007bac1bc55e332a27afbac816a02046f66c07e03d4c5b3481e0d96f7f7e2',
|
|
armv7l: '84e007bac1bc55e332a27afbac816a02046f66c07e03d4c5b3481e0d96f7f7e2',
|
|
i686: '04379e08cd765f182fcd3df2347bb92c156268a4b52799baeb4a6bd8815308e5',
|
|
x86_64: '7e015099074a3376dbea22fa603fc394cafbb03f2116c1c8f523b09c9a25bb16'
|
|
})
|
|
|
|
depends_on 'acl' => :executable
|
|
depends_on 'bdwgc'
|
|
depends_on 'bdwgc' => :executable
|
|
depends_on 'glibc' => :executable
|
|
depends_on 'help2man' => :build
|
|
depends_on 'ncurses' => :executable
|
|
|
|
def self.build
|
|
system './configure',
|
|
"CPPFLAGS=-I#{CREW_PREFIX}/include/ncurses -I#{CREW_PREFIX}/include/ncursesw",
|
|
"--prefix=#{CREW_PREFIX}",
|
|
'--disable-dependency-tracking'
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|