diff options
author | root <root@rshg054.dnsready.net> | 2013-07-17 00:58:52 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-17 00:58:52 -0700 |
commit | dee9f17b595ea903a982d31d1124b302bb17e2ff (patch) | |
tree | 295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/cpuburn | |
parent | 380530d02a5449fdef97b63b394a6743c3de0092 (diff) |
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/cpuburn')
-rw-r--r-- | community/cpuburn/PKGBUILD | 30 | ||||
-rw-r--r-- | community/cpuburn/cpuburn.patch | 41 |
2 files changed, 0 insertions, 71 deletions
diff --git a/community/cpuburn/PKGBUILD b/community/cpuburn/PKGBUILD deleted file mode 100644 index b64b7debd..000000000 --- a/community/cpuburn/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 65092 2012-02-20 03:36:44Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Filip Wojciechowski, filip at loka dot pl - -pkgname=cpuburn -pkgver=1.4a -pkgrel=3 -pkgdesc="CPU testing utilities in optimized assembler for maximum loading of CPUs" -arch=('i686' 'x86_64') -url="https://launchpad.net/ubuntu/+source/cpuburn/" -license=('GPL') -depends=() -source=(https://launchpad.net/ubuntu/+archive/primary/+files/cpuburn_$pkgver.orig.tar.gz - cpuburn.patch) -md5sums=('a9e1df40c660324eb08e91847cbc41b9' - 'f3c77db7592ac02ee83958f07ceb8986') - -build() { - cd "$srcdir/$pkgname-$pkgver" - patch -Np1 -i ../cpuburn.patch - make - install -Dm755 burnBX $pkgdir/usr/bin/burnBX - install -Dm755 burnK6 $pkgdir/usr/bin/burnK6 - install -Dm755 burnK7 $pkgdir/usr/bin/burnK7 - install -Dm755 burnMMX $pkgdir/usr/bin/burnMMX - install -Dm755 burnP5 $pkgdir/usr/bin/burnP5 - install -Dm755 burnP6 $pkgdir/usr/bin/burnP6 - install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README - install -Dm644 Design $pkgdir/usr/share/doc/$pkgname/Design -} diff --git a/community/cpuburn/cpuburn.patch b/community/cpuburn/cpuburn.patch deleted file mode 100644 index 4bcd978b7..000000000 --- a/community/cpuburn/cpuburn.patch +++ /dev/null @@ -1,41 +0,0 @@ ---- cpuburn-1.4.orig/burnP6.S -+++ cpuburn-1.4/burnP6.S -@@ -69,6 +69,7 @@ - push %eax # *BSD syscall - int $0x80 - #endif -+.data # Data allocation - .align 32,0 - half: .long 0x7fffffff,0 - e: .long 0xffffffff,0x3fdfffff ---- cpuburn-1.4.orig/burnK6.S -+++ cpuburn-1.4/burnK6.S -@@ -68,6 +68,7 @@ - push %eax - int $0x80 - #endif -+.data # Data allocation - .align 32,0 - half: .long 0x7fffffff,0 - e: .long 0xffffffff,0x3fdfffff ---- cpuburn-1.4.orig/Makefile -+++ cpuburn-1.4/Makefile -@@ -1,3 +1,3 @@ - all : burnP5 burnP6 burnK6 burnK7 burnBX burnMMX - .S: -- gcc -s -nostdlib -o $@ $< -+ gcc -m32 -s -nostdlib -o $@ $< ---- cpuburn-1.4.orig/burnK7.S -+++ cpuburn-1.4/burnK7.S -@@ -74,10 +74,9 @@ - push %eax - int $0x80 - #endif -+.data # Data allocation - .align 32,0 - .fill 64 - half: .long 0x7fffffff,0 - e: .long 0xffffffff,0x3fdfffff - rt: .long 0xffffffff,0x3fefffff -- -- |