[arch-commits] Commit in bfgminer/repos (8 files)
Timothy Redaelli
tredaelli at nymeria.archlinux.org
Mon Jun 24 09:41:35 UTC 2013
Date: Monday, June 24, 2013 @ 11:41:34
Author: tredaelli
Revision: 93082
archrelease: copy trunk to community-i686, community-x86_64
Added:
bfgminer/repos/community-i686/
bfgminer/repos/community-i686/PKGBUILD
(from rev 93081, bfgminer/trunk/PKGBUILD)
bfgminer/repos/community-i686/remove-dangerous-rpath.patch
(from rev 93081, bfgminer/trunk/remove-dangerous-rpath.patch)
bfgminer/repos/community-x86_64/
bfgminer/repos/community-x86_64/PKGBUILD
(from rev 93081, bfgminer/trunk/PKGBUILD)
bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch
(from rev 93081, bfgminer/trunk/remove-dangerous-rpath.patch)
Deleted:
bfgminer/repos/community-i686/
bfgminer/repos/community-x86_64/
-----------------------------------------------+
community-i686/PKGBUILD | 39 ++++++++++++++++++++++++
community-i686/remove-dangerous-rpath.patch | 11 ++++++
community-x86_64/PKGBUILD | 39 ++++++++++++++++++++++++
community-x86_64/remove-dangerous-rpath.patch | 11 ++++++
4 files changed, 100 insertions(+)
Copied: bfgminer/repos/community-i686/PKGBUILD (from rev 93081, bfgminer/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-06-24 09:41:34 UTC (rev 93082)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
+# Contributor: Andy Weidenbaum <archbaum at gmail.com>
+
+pkgname=bfgminer
+pkgver=3.1.1
+pkgrel=1
+pkgdesc="Bitcoin miner featuring overclocking, monitoring, fan speed control and remote management. For FPGA/GPU/CPU Bitcoin mining."
+arch=('i686' 'x86_64')
+depends=('curl' 'jansson' 'libusbx' 'lm_sensors')
+makedepends=('uthash' 'yasm')
+optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
+url='https://bitcointalk.org/index.php?topic=168174.0'
+license=('GPL3')
+options=(!libtool)
+source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
+ remove-dangerous-rpath.patch)
+sha256sums=('3c70b017b6c02e22864d4b597ef19608ca3221c9d2547215c5bd05418561a2a3'
+ 'c47eb443b870262e3e1a5d6441a06f72c9ca06c0abae459ab577a3f289a91e7a')
+
+prepare() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ patch -p0 < "${srcdir}"/remove-dangerous-rpath.patch
+ NOSUBMODULES=1 ./autogen.sh
+}
+
+build() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ ./configure --prefix=/usr --enable-cpumining --enable-scrypt
+ make
+}
+
+package() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ make DESTDIR="$pkgdir" install
+}
Copied: bfgminer/repos/community-i686/remove-dangerous-rpath.patch (from rev 93081, bfgminer/trunk/remove-dangerous-rpath.patch)
===================================================================
--- community-i686/remove-dangerous-rpath.patch (rev 0)
+++ community-i686/remove-dangerous-rpath.patch 2013-06-24 09:41:34 UTC (rev 93082)
@@ -0,0 +1,11 @@
+--- configure.ac.orig
++++ configure.ac
+@@ -514,7 +514,7 @@
+ ])
+ else
+ libblkmaker_CFLAGS='-Ilibblkmaker'
+- libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl,-rpath,libblkmaker/.libs'
++ libblkmaker_LDFLAGS='-Llibblkmaker/.libs'
+ libblkmaker_LIBS='-lblkmaker_jansson-0.1 -lblkmaker-0.1'
+ AC_CONFIG_SUBDIRS([libblkmaker])
+ fi
Copied: bfgminer/repos/community-x86_64/PKGBUILD (from rev 93081, bfgminer/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2013-06-24 09:41:34 UTC (rev 93082)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
+# Contributor: Andy Weidenbaum <archbaum at gmail.com>
+
+pkgname=bfgminer
+pkgver=3.1.1
+pkgrel=1
+pkgdesc="Bitcoin miner featuring overclocking, monitoring, fan speed control and remote management. For FPGA/GPU/CPU Bitcoin mining."
+arch=('i686' 'x86_64')
+depends=('curl' 'jansson' 'libusbx' 'lm_sensors')
+makedepends=('uthash' 'yasm')
+optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
+url='https://bitcointalk.org/index.php?topic=168174.0'
+license=('GPL3')
+options=(!libtool)
+source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
+ remove-dangerous-rpath.patch)
+sha256sums=('3c70b017b6c02e22864d4b597ef19608ca3221c9d2547215c5bd05418561a2a3'
+ 'c47eb443b870262e3e1a5d6441a06f72c9ca06c0abae459ab577a3f289a91e7a')
+
+prepare() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ patch -p0 < "${srcdir}"/remove-dangerous-rpath.patch
+ NOSUBMODULES=1 ./autogen.sh
+}
+
+build() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ ./configure --prefix=/usr --enable-cpumining --enable-scrypt
+ make
+}
+
+package() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ make DESTDIR="$pkgdir" install
+}
Copied: bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch (from rev 93081, bfgminer/trunk/remove-dangerous-rpath.patch)
===================================================================
--- community-x86_64/remove-dangerous-rpath.patch (rev 0)
+++ community-x86_64/remove-dangerous-rpath.patch 2013-06-24 09:41:34 UTC (rev 93082)
@@ -0,0 +1,11 @@
+--- configure.ac.orig
++++ configure.ac
+@@ -514,7 +514,7 @@
+ ])
+ else
+ libblkmaker_CFLAGS='-Ilibblkmaker'
+- libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl,-rpath,libblkmaker/.libs'
++ libblkmaker_LDFLAGS='-Llibblkmaker/.libs'
+ libblkmaker_LIBS='-lblkmaker_jansson-0.1 -lblkmaker-0.1'
+ AC_CONFIG_SUBDIRS([libblkmaker])
+ fi
More information about the arch-commits
mailing list