summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: da231ce8557dc9e8ce72dad1e518032f8d150286 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: droserasprout <droserasprout@tuta.io>
# Contributor: atommixz <atommixz@gmail.com>

pkgname=airdcpp-webclient
pkgver=1.3.0
pkgrel=1
pkgdesc="A peer-to-peer file sharing client with web user interface"
arch=('i686' 'x86_64')
license=('GPL2')
url="https://github.com/airdcpp-web/${pkgname}"
depends=('miniupnpc' 'boost' 'openssl' 'geoip' 'leveldb' 'websocketpp' 'libnatpmp' 'intel-tbb')
makedepends=('cmake')
options=('!strip')
source=("${pkgname}::git+${url}.git")
sha256sums=('SKIP')

package() {
    cd ${pkgname}
    cmake -DCMAKE_INSTALL_PREFIX=/usr .
    make
    make install DESTDIR="$pkgdir"
}