https://github.com/daenney/pkgbuilds
Disparate PKGBUILDs that are useful to me
https://github.com/daenney/pkgbuilds
archlinux dell hwmon smm
Last synced: 5 months 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 (over 7 years ago)
- Default Branch: main
- Last Pushed: 2025-02-22T14:46:42.000Z (5 months ago)
- Last Synced: 2025-02-22T15:43:26.887Z (5 months ago)
- Topics: archlinux, dell, hwmon, smm
- Language: Shell
- Homepage:
- Size: 86.9 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`.