CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
openssl: adapted to 64b
[crossrootfs.git] / psmisc / Pkgfile
1 # Description: Small utilities that use the /proc filesystem
2 # URL: http://psmisc.sourceforge.net/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on: ncurses
6
7 name=psmisc
8 version=22.21
9 release=3
10 source=(http://downloads.sourceforge.net/project/$name/$name/$name-$version.tar.gz \
11 fuseropts.patch)
12
13 build() {
14 cd $name-$version
15
16 cat > config.cache << EOF
17 ac_cv_func_malloc_0_nonnull=yes
18 ac_cv_func_realloc_0_nonnull=yes
19 EOF
20
21 # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=740275
22 patch -p1 -i $SRC/fuseropts.patch
23
24 ./configure --build=$CHOST \
25 --host=$CTARGET \
26 --prefix=/usr \
27 --disable-nls \
28 --cache-file=config.cache
29
30 make
31 make DESTDIR=$PKG install
32 rm -f $PKG/usr/bin/pstree.x11
33 }