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-12-13 21:08:43 +01:00
|
|
|
pkgver=23.6
|
2022-05-09 21:50:35 +02:00
|
|
|
pkgrel=01
|
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-12-13 21:08:43 +01:00
|
|
|
source=("https://downloads.sourceforge.net/psmisc/${pkgname}-${pkgver}.tar.xz"{,.asc})
|
2022-03-20 13:19:37 +01:00
|
|
|
build() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|
|
|
|
|
2022-09-03 00:50:45 +02:00
|
|
|
#---- license gpg-key sha256sums ----
|
2022-03-20 13:19:37 +01:00
|
|
|
|
|
|
|
license=('GPL')
|
|
|
|
|
2022-12-13 21:08:43 +01:00
|
|
|
validpgpkeys=('5D2FB320B825D93904D205193938F96BDF50FEA5') # Craig Small <csmall@debian.org>
|
|
|
|
|
|
|
|
sha256sums=(257dde06159a4c49223d06f1cccbeb68933a4514fc8f1d77c64b54f0d108822a # psmisc-23.6.tar.xz
|
|
|
|
0934df9150ef02cf5db7bcf7671faa35b0d1db14fd524c0af42ec669830411d0) # psmisc-23.6.tar.xz.asc
|
|
|
|
|