#!/bin/bash cd /sources tar xf attr-2.5.1.tar.gz cd attr-2.5.1 ./configure --prefix=/usr \ --disable-static \ --sysconfdir=/etc \ --docdir=/usr/share/doc/attr-2.5.1 if [ $? -ne 0 ] then exit 1 fi make -j5 if [ $? -ne 0 ] then exit 1 fi make check make install cd /sources rm -rf attr-2.5.1