Date: Sunday, February 5, 2023 @ 13:32:41
Author: blakkheim
Revision: 1392760
archrelease: copy trunk to community-testing-x86_64
Added:
bmake/repos/community-testing-x86_64/
bmake/repos/community-testing-x86_64/PKGBUILD
(from rev 1392759, bmake/trunk/PKGBUILD)
bmake/repos/community-testing-x86_64/keys/
----------+
PKGBUILD | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
Copied: bmake/repos/community-testing-x86_64/PKGBUILD (from rev 1392759,
bmake/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-02-05 13:32:41 UTC (rev 1392760)
@@ -0,0 +1,29 @@
+# Maintainer: Ivy Foster <[email protected]>
+# Maintainer: T.J. Townsend <[email protected]>
+# Contributor: Alex Szczuczko <alex at szc dot ca>
+# Contributor: Devin Cofer <ranguvar{AT]archlinux[DOT}us>
+# Contributor: Imanol Celaya <[email protected]>
+
+pkgname=bmake
+pkgver=20230127
+pkgrel=2
+pkgdesc='Portable version of the NetBSD make build tool'
+arch=(x86_64)
+url='https://www.crufty.net/help/sjg/bmake.html'
+license=(BSD)
+optdepends=('python: for meta2deps.py script')
+source=("https://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz"{,.asc})
+sha256sums=('6056866f69496699c815b2af7144701fce7f1ccb6a4743dac5d221ff157d8915'
+ 'SKIP')
+validpgpkeys=(7E228507C26D8DC164F531BFBA54C8AF755A2A99)
+
+build() {
+ cd bmake
+ ./boot-strap --prefix=/usr op=build
+}
+
+package() {
+ cd bmake
+ ./boot-strap --install-destdir="$pkgdir" --prefix=/usr op=install
+ install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}