mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 01:54:36 +08:00
26 lines
578 B
Bash
26 lines
578 B
Bash
# Maintainer: Samir Benmendil <ram-z@chakra-project.org>
|
|
# Contributor: Eric Belanger <eric@archlinux.org>
|
|
|
|
pkgname=psmisc
|
|
pkgver=22.21
|
|
pkgrel=1
|
|
pkgdesc="Miscellaneous procfs tools"
|
|
arch=('x86_64')
|
|
url="http://psmisc.sourceforge.net/index.html"
|
|
license=('GPL')
|
|
groups=('base')
|
|
depends=('ncurses')
|
|
source=(http://downloads.sourceforge.net/psmisc/${pkgname}-${pkgver}.tar.gz)
|
|
sha1sums=('4bb60610f7b604f58c52542f0e9dea89b5d72fae')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|