summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ee69fb48da1937eec46c81d3f9ac5e68b3f60cb2 (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
# Maintainer: Alexandre Pujol <alexandre@pujol.io>

pkgname='pass-rotate'
pkgver=0.1
pkgrel=3
pkgdesc='A tool and library for rotating your password on online services'
arch=('any')
url='https://git.sr.ht/~sircmpwn/pass-rotate'
license=('MIT')
depends=(
  'python'
  'python-beautifulsoup4'
  'python-docopt'
  'python-requests'
  'python-html5lib'
)
makedepends=('python-setuptools')
conflicts=("$pkgname-git")
source=(https://git.sr.ht/~sircmpwn/$pkgname/archive/$pkgver.tar.gz)
sha512sums=('019dd53fa1d5d9435fe7bdcabb0f2c8c1490d00a74a28f466f9027d1d593b5db6afc333f8b855f9b33268c36092917bcc53dd4616a914b0842f38526431c410b')
options=(!emptydirs)

package() {
  cd "$pkgname-$pkgver"
  python setup.py install --root="$pkgdir" --optimize=1
}