Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2 - (show annotations)
Sun Oct 4 14:31:24 2009 UTC (3 years, 7 months ago) by cjg
File size: 523 byte(s)
importing opt
1 # Description: userspace utility for testing the memory subsystem
2 # URL: http://pyropus.ca/software/memtester/
3 # Maintainer: acrux, acrux at linuxmail dot org
4 # Depends on:
5 # PPC!=
6
7 name=memtester
8 version=4.0.8
9 release=1
10 source=(http://pyropus.ca/software/$name/old-versions/$name-$version.tar.gz)
11
12 build () {
13 cd $name-$version
14
15 sed -i "s|-O2|-O3 -mcpu=powerpc -pipe|g" conf-cc
16
17 make
18 mkdir -p $PKG/{usr/bin,usr/man/man8}
19
20 install -D -m 755 $name $PKG/usr/bin
21 install -D -m 644 $name.8 $PKG/usr/man/man8/$name.8
22 }