Date: Friday, March 17, 2023 @ 23:15:45
Author: dvzrv
Revision: 471378
archrelease: copy trunk to testing-x86_64
Added:
make/repos/testing-x86_64/
make/repos/testing-x86_64/PKGBUILD
(from rev 471377, make/trunk/PKGBUILD)
make/repos/testing-x86_64/keys/
----------+
PKGBUILD | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
Copied: make/repos/testing-x86_64/PKGBUILD (from rev 471377,
make/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-03-17 23:15:45 UTC (rev 471378)
@@ -0,0 +1,32 @@
+# Maintainer: Lukas Fleischer <[email protected]>
+# Contributor: Allan McRae <[email protected]>
+# Contributor: judd <[email protected]>
+
+pkgname=make
+pkgver=4.4.1
+pkgrel=2
+pkgdesc="GNU make utility to maintain groups of programs"
+arch=('x86_64')
+url="https://www.gnu.org/software/make"
+license=('GPL3')
+depends=('glibc' 'guile')
+source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.lz"{,.sig})
+sha256sums=('8814ba072182b605d156d7589c19a43b89fc58ea479b9355146160946f8cf6e9'
+ 'SKIP')
+validpgpkeys=('6D4EEB02AD834703510B117680CB727A20C79BB2') # Paul Smith
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
+ make
+}
+
+check() {
+ cd "${pkgname}-${pkgver}"
+ make -k check
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}