All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| import UIKit | |
| public typealias FontNameExt = (name: String, ext: String) | |
| public func autoRegisteringFont(_ fontNames: [FontNameExt], _ spmBundleName : String) throws { | |
| guard let spmBundle = Bundle(bundleName: spmBundleName) else { | |
| throw("Fail to find bundle(\(spmBundleName).bundle) in your app bundle.") | |
| } | |
| try fontURLs(for: fontNames, in: spmBundle).forEach { try registerFont(from: $0) } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * MacEditorTextView | |
| * Copyright (c) Thiago Holanda 2020-2025 | |
| * https://bsky.app/profile/tholanda.com | |
| * | |
| * (the twitter account is now deleted, please, do not try to reach me there) | |
| * https://twitter.com/tholanda | |
| * | |
| * MIT license |