2022-03-20 13:19:37 +01:00
|
|
|
#!/usr/bin/bash
|
|
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
2022-03-22 02:43:33 +01:00
|
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
2022-03-20 13:19:37 +01:00
|
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
2022-03-22 02:43:33 +01:00
|
|
|
# Website : https://pozol.eu
|
2022-03-20 13:19:37 +01:00
|
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
|
|
|
|
pkgname=psmisc
|
2022-03-22 02:43:33 +01:00
|
|
|
pkgver=23.5rc1
|
2022-05-07 02:11:34 +02:00
|
|
|
pkgrel=02
|
2022-03-20 13:19:37 +01:00
|
|
|
pkgdesc='Miscellaneous procfs tools'
|
|
|
|
arch=('x86_64')
|
|
|
|
url='https://gitlab.com/psmisc/psmisc'
|
|
|
|
depends=('ncurses')
|
2022-05-07 02:11:34 +02:00
|
|
|
#options=('debug') ## uncomment this to have the debug package created
|
2022-03-20 13:19:37 +01:00
|
|
|
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')
|
|
|
|
|
2022-03-22 02:43:33 +01:00
|
|
|
sha256sums=(a1213aa338ca1406715aaaa9e8a653dfe2da5acc54e291c876b42247fe1d85ff) # psmisc-23.5rc1.tar.xz
|
|
|
|
#7f0cceeace2050c525f3ebb35f3ba01d618b8d690620580bdb8cd8269a0c1679) # psmisc-23.4.tar.xz
|
2022-05-07 02:11:34 +02:00
|
|
|
|