summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5c3c3a9c9663bb039ebdfdbc52ad68c0b7bb7734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Maintainer: mrxx <mrxx at cyberhome dot at>
# Contributor: Afri 5chdn <aur@5chdn.co>
# Contributor: Andy Weidenbaum <archbaum@gmail.com>

pkgname=ethminer
pkgver=0.19.0
pkgrel=1
pkgdesc="Ethereum miner with OpenCL and stratum support (built without CUDA)."
arch=('x86_64')
url="https://github.com/ethereum-mining/ethminer"
license=('MIT')
depends=('mesa' 'pth')
makedepends=('cmake' 'python' 'git' 'opencl-headers')
conflicts=('ethminer-git')
source=("git+${url}.git#tag=v${pkgver}")
sha256sums=('SKIP')

build () {
  cd "$pkgname"
  git submodule update --init --recursive

  # add missing library for linking
  sed -i 's/CLI11 Boost::system)/CLI11 Boost::system Boost::filesystem)/' ethminer/CMakeLists.txt

  mkdir -p build && cd build

  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DETHASHCUDA=OFF
  cmake --build .
}

package() {
  cd "$pkgname/build"
  make DESTDIR=$pkgdir install
}