Date: Sunday, February 12, 2023 @ 20:12:09
Author: seblu
Revision: 468669
archrelease: copy trunk to testing-x86_64
Added:
which/repos/testing-x86_64/
which/repos/testing-x86_64/PKGBUILD
(from rev 468668, which/trunk/PKGBUILD)
----------+
PKGBUILD | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
Copied: which/repos/testing-x86_64/PKGBUILD (from rev 468668,
which/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-02-12 20:12:09 UTC (rev 468669)
@@ -0,0 +1,29 @@
+# Maintainer: Sébastien Luttringer <[email protected]>
+# Contributor: Allan McRae <[email protected]>
+# Contributor: Andreas Radke <[email protected]>
+
+pkgname=which
+pkgver=2.21
+pkgrel=6
+pkgdesc='A utility to show the full path of commands'
+arch=('x86_64')
+url='https://savannah.gnu.org/projects/which/'
+license=('GPL3')
+depends=('glibc' 'bash')
+# gpg key is using deprecated md5 algo, do not use
+# check if a new one is issued in the next release
+source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz")
+sha256sums=('f4a245b94124b377d8b49646bf421f9155d36aa7614b6ebf83705d3ffc76eaad')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: