rmc_website/_site/programs/archived/ncxcorelite.html
IanSkinner1982 58f28662c6 stuff
2022-08-25 21:19:49 -04:00

139 lines
6.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>NCX-Core-Lite | rmc's site</title>
<link rel="icon" type="image/png" href="/icon.png"/>
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
<script src="/assets/js/main.js"></script>
<meta property="og:title" content="NCX-Core-Lite">
<meta property="og:locale" content="en_US">
<meta name="description" content="NCX-Core-Lite | rmc's site">
<meta property="og:description" content="NCX-Core-Lite | rmc's site">
<link rel="canonical" href="https://ianskinner1982.github.io">
<meta property="og:url" content="https://ianskinner1982.github.io">
<meta property="og:site_name" content="rmc's site">
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="/">rmc's site</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="/">Home</a>
</li>
<!--<li class="nav-item">
<a class="nav-link" href="/programs/">Programs</a>
</li>-->
<li class="nav-item">
<a class="nav-link" href="/blog">DS Stuff</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="content-wrap" style="padding-bottom: 2.5rem;">
<div class="container text-center">
<img src="https://cdn.ncxprogramming.com/file/image/banner/archived.svg" class="projectimg" style="width:80%;" alt="A banner that says 'Archved'.">
<img src="https://cdn.ncxprogramming.com/file/icon/ncxcore.png" class="projectimg" style="width:256px;height:256px;padding-top:8px;" alt="The program's icon.">
<div class="text-center pb-3">
<h1>NCX-Core-Lite</h1>
<p><b>By NinjaCheetah</b></p>
<p><b>Platform(s): </b>macOS, Linux</p>
<div class="dropdown pb-3">
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
Project Links
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/NCX-Core-Lite">View Source</a></li>
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/NCX-Core-Lite/releases">Releases</a></li>
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/NCX-Core-Lite/actions">Nightly Builds</a></li>
</ul>
<div id="content-wrap" style="padding-bottom: 2.5rem;">
<h3>What is it?</h3>
<p>NCX-Core-Lite is a CLI application that allows you to quickly download software by <a href="https://github.com/NinjaCheetah">NinjaCheetah</a> and other small develpers.</p>
<p>Here is a list of the apps currently available (non-exhaustive):</p>
<div class="prg-list">
<ul style="text-align:center;list-style-type:none;">
<li><a href="https://github.com/NCX-Programming/theVaultC" target="_blank">theVaultC</a></li>
<li><a href="https://github.com/YourKalamity/lazy-dsi-file-downloader" target="_blank">Lazy DSi File Downloader</a></li>
<li><a href="https://github.com/IanSkinner1982/C64-title-loader" target="_blank">C64 Title Loader</a></li>
</ul>
</div>
<h3>Requirements</h3>
<p>Full dependency install instructions available <a href="https://github.com/NCX-Programming/NCX-Core-Lite/wiki/Dependencies">on the wiki</a>.</p>
<h4>macOS</h4>
<ul style="text-align:center;list-style-type:none;">
<li>- At least macOS 10.12 (Intel, build available pre-compiled)</li>
<li>- At least macOS 11.0 (ARM, build not available pre-compiled)</li>
<li>- libcurl (install with <code>brew install curl</code>)</li>
<li>- GTK+ 3 (install with <code>brew install gtk+3</code>)</li>
</ul>
<h4>Linux</h4>
<p>(Note that the same package names should work in pacman.)</p>
<ul style="text-align:center;list-style-type:none;">
<li>- A 64-bit version of Linux</li>
<li>- libcurl (install with <code>sudo apt install libcurl4-nss-dev</code>)</li>
<li>- GTK+ 3 (install with <code>sudo apt install libgtk-3-0 libgtk-3-dev</code>)</li>
</ul>
<h3>Installing</h3>
<p>Download the zip from the latest successful actions run, which can be accessed using the link at the top of the page, extract it, and run. That's it!</p>
<p>Available file formats are:</p>
<ul style="text-align:center;list-style-type:none;">
<li>- A Linux ELF binary (Linux)</li>
<li>- A Unix ELF binary (macOS)</li>
<li>- A (experimental) .app binary (macOS)</li>
</ul>
<h3>Compiling</h3>
<p>Full compiling instructions available <a href="https://github.com/NCX-Programming/NCX-Core-Lite/wiki/Compiling">on the wiki</a>.</p>
<h4>macOS</h4>
<ul style="text-align:center;list-style-type:none;">
<li>- Make sure you have all the dependencies installed</li>
<li>- Clone/download the source code however you prefer to</li>
<li>- Enter the directory and run <code>make mac</code> (for a Unix binary) or <code>make macapp</code> (for a macOS .app binary)</li>
</ul>
<h4>Linux</h4>
<ul style="text-align:center;list-style-type:none;">
<li>- Make sure you have all the dependencies installed</li>
<li>- Clone/download the source code however you prefer to</li>
<li>- Enter the directory and run <code>make linux</code> (makes a Linux binary)</li>
</ul>
</div>
</div>
</div>
</body>
<footer>
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
Copyright &copy; 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
<br>
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
</div>
</footer>
</footer>
</html>