Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daenney/pkgbuilds
Disparate PKGBUILDs that are useful to me
https://github.com/daenney/pkgbuilds
archlinux dell hwmon smm
Last synced: 16 days ago
JSON representation
Disparate PKGBUILDs that are useful to me
- Host: GitHub
- URL: https://github.com/daenney/pkgbuilds
- Owner: daenney
- License: mit
- Created: 2018-03-29T16:35:17.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-12-26T17:09:51.000Z (about 1 month ago)
- Last Synced: 2025-01-12T21:07:40.590Z (24 days ago)
- Topics: archlinux, dell, hwmon, smm
- Language: Shell
- Homepage:
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PKGBUILDs
A repository of some custom PKGBUILDs for Arch Linux.
## Building
I prefer to build packages inside a chroot. This is not necessary for most
PKGBUILDs that just produce a binary but I would recommend doing so for any
package that builds a kernel module. Especially when building a new package
or trying out modifications this can be helpful to avoid polluting the host
with packages.* Install devtools: `pacman -S devtools`
* Create a chroot, we'll name it `root`:
```
mkdir $HOME/chroot
mkarchchroot $HOME/chroot/root base-devel
```
* Update the chroot before any build: `arch-nspawn $HOME/chroot/root pacman -Syu`
* Build a package: `cd ; makechrootpkg -c -r $HOME/chroot`## Licensing
Though the `PKGBUILD` files are licensed according to the `LICENSE` file, some
files included or the package being built might use a different license. Please
refer to the `license` entry in the `PKGBUILD`.