summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cf2cf275c901209711dff6251755b66fa1ff2292 (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
pkgname=nibl
pkgver=0.4.1
pkgrel=2
pkgdesc="Command line interface to the NIBL XDCC package search"
arch=('any')
license=('GPL')
url="https://github.com/2ion/nibl"
depends=(\
  'python'                \
  'python-termcolor'      \
  'python-terminaltables' \
  'python-beautifulsoup4' \
  'python-requests'       \
  'python-progressbar')
makedepends=('cython' 'pkg-config' 'gcc')
options=(!emptydirs)
source=('https://github.com/2ion/nibl/archive/master.tar.gz')
sha256sums=(SKIP)

build()
{
  cd "$srcdir/nibl-master"
  make
}

package()
{
  cd "$srcdir/nibl-master"
  make DESTDIR="$pkgdir/" install
}