19 lines
516 B
Plaintext
19 lines
516 B
Plaintext
# Description: Measures many of the CPU resources that programs use
|
|
# URL: http://www.gnu.org/software/time/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
name=time
|
|
version=1.7
|
|
release=3
|
|
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz $name.1)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
autoreconf
|
|
./configure --prefix=/usr --infodir=$PKG/usr/info
|
|
make
|
|
make prefix=$PKG/usr install
|
|
rm -rf $PKG/usr/info
|
|
install -D -m 0644 $SRC/$name.1 $PKG/usr/share/man/man1/$name.1
|
|
}
|