new blfs: sys-apps/which-2.23

This commit is contained in:
2025-12-30 01:44:11 -05:00
parent 69ea033d16
commit db7d827b03

View File

@@ -0,0 +1,25 @@
pkgname=which
pkgver=2.23
pkgrel=1
pkgdesc='A utility to show the full path of commands'
arch=('x86_64')
homepage='https://savannah.gnu.org/projects/which/'
license=('GPL-3.0-or-later')
sources=("${pkgname}-${pkgver}.tar.gz")
urls=("https://ftp.gnu.org/gnu/${pkgname}/${sources[0]}")
md5sums=("1963b85914132d78373f02a84cdb3c86")
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr &&
make
}
src_install() {
make DESTDIR="$pkgdir" install
}
# vim:ft=sh syn=sh et sw=2: