summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2534b263f77fa65f35b90914441016edc59a8586 (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
 
# Maintainer: Doug Newgard <scimmia at archlinux dot info>

pkgname=epour
pkgver=0.7.0
pkgrel=1
pkgdesc="Torrent client based on EFL"
arch=('any')
url="https://phab.enlightenment.org/w/projects/epour/"
license=('GPL3')
depends=('python-efl' 'python-xdg' 'libtorrent-rasterbar>1.1.0' 'hicolor-icon-theme')
makedepends=('python-distutils-extra')
source=("http://download.enlightenment.org/rel/apps/$pkgname/$pkgname-$pkgver.tar.xz")
sha1sums=('SKIP')

build() {
  cd "$srcdir/$pkgname-$pkgver"
  python setup.py build
}

package() {
  cd "$srcdir/$pkgname-$pkgver"

  python setup.py install --root="${pkgdir}"  #--optimize=1 if this active epour doesn't show icons

# install text files
  install -d "$pkgdir/usr/share/doc/$pkgname/"
  install -m644 -t "$pkgdir/usr/share/doc/$pkgname/" AUTHORS README COPYING
}