summaryrefslogtreecommitdiff
path: root/community/cgminer/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/cgminer/PKGBUILD')
-rw-r--r--community/cgminer/PKGBUILD54
1 files changed, 0 insertions, 54 deletions
diff --git a/community/cgminer/PKGBUILD b/community/cgminer/PKGBUILD
deleted file mode 100644
index d16f01b3c..000000000
--- a/community/cgminer/PKGBUILD
+++ /dev/null
@@ -1,54 +0,0 @@
-# $Id: PKGBUILD 85801 2013-03-07 12:43:51Z fyan $
-# Maintainer: Felix Yan <felixonmars@gmail.com>
-# Contributor: monson <holymonson@gmail.com>
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: David Manouchehri <david@davidmanouchehri.com>
-
-pkgname=cgminer
-pkgver=2.11.1
-_build=
-pkgrel=1
-pkgdesc="Multi-threaded multi-pool CPU and GPU miner for bitcoin, forked from cpuminer."
-url='http://forum.bitcoin.org/index.php?topic=28402.0'
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('curl' 'libcl')
-makedepends=('opencl-headers')
-optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA'
- 'opencl-catalyst: OpenCL implementation for AMD')
-source=("http://ck.kolivas.org/apps/cgminer/$pkgname-$pkgver.tar.bz2"
- "$pkgname.conf.d"
- "$pkgname.service")
-backup=("etc/conf.d/$pkgname" "etc/$pkgname.conf")
-
-[ "$CARCH" == "x86_64" ] && makedepends+=('yasm')
-
-build() {
- cd "$srcdir"
- cd $pkgname-$pkgver${_build}
-
- # Use in-tree jansson since it is not compatible with jansson 2.0
- #sed -e 's/^AC_CHECK_LIB(jansson, json_loads, request_jansson=false, request_jansson=true)$/request_jansson=true/' -i configure.ac
-
- # Here you may want to use custom CFLAGS
- #export CFLAGS="-O2 -march=native -mtune=native -msse2"
-
- ./configure --prefix=/usr --enable-cpumining --disable-adl
-
- make
-}
-
-package() {
- cd "$srcdir"/$pkgname-$pkgver${_build}
-
- make DESTDIR="$pkgdir" install
-
- install -Dm644 "$srcdir"/$pkgname.service "$pkgdir"/usr/lib/systemd/system/$pkgname.service
- install -Dm644 "$srcdir"/$pkgname.conf.d "$pkgdir"/etc/conf.d/$pkgname
- sed 's#/usr/local/bin#/usr/bin#g' example.conf > $pkgname.conf
- install -Dm644 $pkgname.conf "$pkgdir"/etc/$pkgname.conf
-}
-
-md5sums=('aa2199a9756cbca5582c03e8c1a98dd1'
- 'fe4a243fabe24608f5c05e40f0f118f6'
- 'bd76fc92fedce18c59ccea2aa79cc664')