35 lines
822 B
Bash
35 lines
822 B
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=psmisc
|
|
pkgver=23.4
|
|
pkgrel=01
|
|
pkgdesc='Miscellaneous procfs tools'
|
|
arch=('x86_64')
|
|
url='https://gitlab.com/psmisc/psmisc'
|
|
depends=('ncurses')
|
|
source=("https://downloads.sourceforge.net/psmisc/${pkgname}-${pkgver}.tar.xz")
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
#---- license gpg-key sha512sums ----
|
|
|
|
license=('GPL')
|
|
|
|
sha256sums=(7f0cceeace2050c525f3ebb35f3ba01d618b8d690620580bdb8cd8269a0c1679) # psmisc-23.4.tar.xz
|
|
|