Date: Sunday, January 29, 2023 @ 20:22:03
Author: blakkheim
Revision: 1391095
archrelease: copy trunk to community-x86_64
Added:
bmake/repos/community-x86_64/PKGBUILD
(from rev 1391094, bmake/trunk/PKGBUILD)
bmake/repos/community-x86_64/keys/
Deleted:
bmake/repos/community-x86_64/PKGBUILD
bmake/repos/community-x86_64/keys/
----------+
PKGBUILD | 71 +++++++++++++++++++++++++------------------------------------
1 file changed, 30 insertions(+), 41 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-01-29 20:21:43 UTC (rev 1391094)
+++ PKGBUILD 2023-01-29 20:22:03 UTC (rev 1391095)
@@ -1,41 +0,0 @@
-# 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=20230126
-pkgrel=1
-pkgdesc='Portable version of the NetBSD make build tool'
-arch=(x86_64)
-url='https://www.crufty.net/help/sjg/bmake.html'
-license=(BSD)
-# upstream recommends using python for improved meta2deps script
-depends=(python)
-source=(
- "https://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz"
- "https://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz.asc"
-)
-sha256sums=('864f7218582cf790ec73b20b7105425cb9ffa335222541772f0313306b6a0bc4'
- 'SKIP')
-validpgpkeys=(7E228507C26D8DC164F531BFBA54C8AF755A2A99)
-
-build() {
- cd bmake
- ./boot-strap --prefix=/usr op=build
-}
-
-# op=build also runs unit tests; thus no check()
-
-package() {
- cd bmake
-
- ./boot-strap --install-destdir="$pkgdir" --prefix=/usr op=install
-
- rm -rf "$pkgdir/usr/share/man/cat1"
- install -Dm644 bmake.1 "$pkgdir/usr/share/man/man1/bmake.1"
- install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
- chmod 755 "$pkgdir/usr/bin" "$pkgdir/usr/share/man/man1"
-}
Copied: bmake/repos/community-x86_64/PKGBUILD (from rev 1391094,
bmake/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-01-29 20:22:03 UTC (rev 1391095)
@@ -0,0 +1,30 @@
+# 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=1
+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
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd bmake
+ make DESTDIR="$pkgdir" install
+ install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}