mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Only add musl bin to path if musl is installed Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add print_source_bashrc to crew_profile_base Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
47 lines
1.4 KiB
Ruby
47 lines
1.4 KiB
Ruby
require 'package'
|
|
|
|
class Musl_ncurses < Package
|
|
description 'The ncurses (new curses) library is a free software emulation of curses in System V Release 4.0 (SVr4), and more. — Wide character'
|
|
homepage 'https://www.gnu.org/software/ncurses/'
|
|
version '6.3-20220402'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/mirror/ncurses.git'
|
|
git_hashtag '64eb5fae1961774e65e46953fa536d12c12f6d76'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '25144e3cc706bdf9be536b599a636aa93816937335376cdf76f6a3bdd6d34585',
|
|
armv7l: '25144e3cc706bdf9be536b599a636aa93816937335376cdf76f6a3bdd6d34585',
|
|
i686: '1a10f66028936530ebfcda1a1ef82ac8e23c0d643589b603539719875e56f32a',
|
|
x86_64: 'd001c2863a3851651c30d9b0d5b6d6168f7e806b193b8541041b333d4e57e665'
|
|
})
|
|
|
|
depends_on 'musl_native_toolchain' => :build
|
|
depends_on 'musl_libunistring' => :build
|
|
depends_on 'musl_libidn2' => :build
|
|
depends_on 'musl_zlib' => :build
|
|
|
|
is_musl
|
|
is_static
|
|
patchelf
|
|
print_source_bashrc
|
|
|
|
def self.build
|
|
system "#{MUSL_ENV_OPTIONS} ./configure --prefix=#{CREW_MUSL_PREFIX} \
|
|
--with-static \
|
|
--with-cxx-static \
|
|
--without-debug \
|
|
--enable-pc-files \
|
|
--with-pkg-config-libdir=#{CREW_MUSL_PREFIX}/lib/pkgconfig \
|
|
--enable-widec \
|
|
--without-tests \
|
|
--with-termlib"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|