initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

28
dtc/PKGBUILD Normal file
View File

@@ -0,0 +1,28 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=dtc
pkgver=1.6.0
pkgrel=1
pkgdesc='Device Tree Compiler'
url='https://www.devicetree.org/'
arch=(i686 x86_64)
license=(GPL-2)
makedepends=(swig python)
source=(https://www.kernel.org/pub/software/utils/dtc/dtc-$pkgver.tar.xz)
sha512sums=('15433b24f1d6b7ed1f8066d050bd1bcbf988731aa38147564e3dd04b5f69af8d69e03befdc621a768526c620425a9bdd24aad4f9ff135930d6a1eeb0625f7de3')
prepare() {
cd dtc-$pkgver
sed -i 's/-Werror//' Makefile
}
build() {
cd dtc-$pkgver
make
}
package() {
cd dtc-$pkgver
DESTDIR="$pkgdir" make SETUP_PREFIX="$pkgdir/usr" PREFIX="$pkgdir/usr" install
install -Dm644 GPL -t $pkgdir/usr/share/licenses/$pkgname
}