summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 52e7ad03d6e495ef66c79958e0adf6274f6af114 (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
35
36
# Maintainer: Adrian Petrescu <adrian@apetre.sc>
# Contributor: Adrian Petrescu <adrian@apetre.sc>

pkgname=yada
pkgver=0.9.2
pkgrel=1
pkgdesc='Yet another dotfile aggregator'
arch=(any)
url=https://github.com/apetresc/yada
license=(MIT)
depends=(
  'python-click>=7' 'python-click<8'
  'python-setuptools'
  'python-yaml'
)
makedepends=(
  git
)
source=(
  git+https://github.com/apetresc/yada.git#tag=v${pkgver}
)
sha256sums=(
  'SKIP'
)

build() {
  cd ${pkgname}

  python setup.py build sdist
}

package() {
  cd ${pkgname}

  python setup.py install --root="${pkgdir}"
}