Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yshui/misceltools
Miscellaneous tools
https://github.com/yshui/misceltools
archlinux aur pacman
Last synced: about 2 months ago
JSON representation
Miscellaneous tools
- Host: GitHub
- URL: https://github.com/yshui/misceltools
- Owner: yshui
- Created: 2020-05-10T22:06:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-20T18:24:47.000Z (about 4 years ago)
- Last Synced: 2024-12-14T00:15:20.682Z (about 2 months ago)
- Topics: archlinux, aur, pacman
- Language: D
- Size: 81.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Miscellaneous tools
===================Random tools/scripts I created for my own convenience. Might be useful for you too.
Each directory would contain its own README, here is an summary of each tool.
* ArchLinux specific:
* `repo-pull`: Use [aurutils](https://github.com/AladW/aurutils) and [auracle](https://github.com/falconindy/auracle) to download and build a package with its dependencies, and add the results to your local repository.
* `repo-unpull`: Use aurutils to remove package and its unneeded dependencies from your local repository.
* `repo-update`: Use aurutils and auracle to update and rebuild packages in to your local repository.
* `repo-rebuild`: Use aurutils and auracle to rebuild a package in to your local repository, even if the package is not updated on AUR.* Git tools:
* Hooks:
* `git-missing`: For C/C++ projects, check if you forget to stage some new files.* Other:
* `common`: Not a tool directory, shared code for the tools.Tools can usually be built with the idiomatic build systems of their language. So:
* DLang: `dub build`, or just `./program-name.d`
* C/C++: `cmake -B build . && make -C build`
* Rust: `cargo build`
* zig: `zig build-exe`