blob: 0eaeacd02319da77c14d6275c138e21888710c06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Petits utilitaires qui utilisent le système de fichiers /proc
# URL: http://psmisc.sourceforge.net/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=psmisc
version=22.16
release=1
source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--exec-prefix=""
make
make DESTDIR=$PKG install
}
|