* cleanup patches
* fix polyseed patch
* Fix iOS builds
* fix polyseed dependencies
* fix polyseed patch for macOS
* update ledger patch
* update wownero patches and version
* update checksums
* wip"
* update gitmodules
* update boost build script
* update build_single.sh
* vix verbosey_copy
* fix __clear_cache bug on wownero
* update randomwow
* migrate build system
* fix cross compilation issues
* some more build issue
* update polyseed
* cleanup cmakelists
* fix toolchain.cmake.in
* add ssp
* another attempt at building windows on CI
* fix package name
* migrate mirror to my own hosting
* change download mirror priority (fallback first)
* link ssp in monero module as well by using CMAKE_{C,CXX}_FLAGS
* fix android builds
* update polyseed source
* 13 -> trixie
* fix package name conflicts, update runner to sid
* update boost to 1_84_0, disable patch that's no longer needed
* switch to ubuntu:24.04
* add POLYSEED_STATIC to toolchain.cmake.in in order to properly link
* drop patches
* fixes to darwin
* link missing wowner-seed library
* a litte bit more of experiments
* build locale only on windows
* update iconv
* update definitions
* update ci builds
* update my progress
* ios fix, update depends, ci
* multithread build system
* fix android, mingw and linux build issues
* remove dependency check
* update Dockerfile to include pigz
* show a message when pigz is missing
* fix devcontainer mingw setup (missing ENV)
* update android build runner
* sailfishos dropped (you better go behave yourself and run actual linux programs)
* fiz pigz issues
* install llvm-ranlib for android
* fix iOS build issues
* fix dummy ledger patch
* fix macos and darwin
* fix macos ci
* fix macos build command
* install autoconf
* add automake
* add libtool
* macos fixes, wownero fixes, idk what else, please help me
* fix wownero iOS build
* Cleanup patches
* add try-catch into monero code
* fix error handling
* update checksums
64 lines
2.3 KiB
Makefile
64 lines
2.3 KiB
Makefile
package=ncurses
|
|
$(package)_version=6.5
|
|
$(package)_download_path=https://ftp.gnu.org/gnu/ncurses
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=136d91bc269a9a5785e5f9e980bc76ab57428f604ce3e5a5a90cebc767971cc6
|
|
$(package)_patches=fallback.c
|
|
|
|
define $(package)_set_vars
|
|
$(package)_build_opts=CC="$($(package)_cc)"
|
|
$(package)_config_env=cf_cv_ar_flags=""
|
|
$(package)_config_opts=--prefix=$(host_prefix)
|
|
$(package)_config_opts+=--disable-shared
|
|
$(package)_config_opts+=--with-build-cc=gcc
|
|
$(package)_config_opts+=--without-debug
|
|
$(package)_config_opts+=--without-ada
|
|
$(package)_config_opts+=--without-cxx-binding
|
|
$(package)_config_opts+=--without-cxx
|
|
$(package)_config_opts+=--without-ticlib
|
|
$(package)_config_opts+=--without-tic
|
|
$(package)_config_opts+=--without-progs
|
|
$(package)_config_opts+=--without-tests
|
|
$(package)_config_opts+=--without-tack
|
|
$(package)_config_opts+=--without-manpages
|
|
$(package)_config_opts+=--with-termlib
|
|
$(package)_config_opts+=--disable-tic-depends
|
|
$(package)_config_opts+=--disable-big-strings
|
|
$(package)_config_opts+=--disable-ext-colors
|
|
$(package)_config_opts+=--enable-pc-files
|
|
$(package)_config_opts+=--host=$(HOST)
|
|
$(pacakge)_config_opts+=--without-shared
|
|
$(pacakge)_config_opts+=--without-pthread
|
|
$(pacakge)_config_opts+=--disable-rpath
|
|
$(pacakge)_config_opts+=--disable-colorfgbg
|
|
$(pacakge)_config_opts+=--disable-ext-mouse
|
|
$(pacakge)_config_opts+=--disable-symlinks
|
|
$(pacakge)_config_opts+=--enable-warnings
|
|
$(pacakge)_config_opts+=--enable-assertions
|
|
$(package)_config_opts+=--with-default-terminfo-dir=/etc/_terminfo_
|
|
$(package)_config_opts+=--with-terminfo-dirs=/etc/_terminfo_
|
|
$(pacakge)_config_opts+=--enable-database
|
|
$(pacakge)_config_opts+=--enable-sp-funcs
|
|
$(pacakge)_config_opts+=--disable-term-driver
|
|
$(pacakge)_config_opts+=--enable-interop
|
|
$(pacakge)_config_opts+=--enable-widec
|
|
$(package)_build_opts=CFLAGS="$($(package)_cflags) $($(package)_cppflags) -fPIC"
|
|
endef
|
|
|
|
define $(package)_preprocess_cmds
|
|
cp $($(package)_patch_dir)/fallback.c ncurses
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE) $($(package)_build_opts) V=1
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) install.libs DESTDIR=$($(package)_staging_dir)
|
|
endef
|
|
|