summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0a281caa2a739a7f67d1b8da64e7cabb7a4da744 (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
# Maintainer: Rafael Silva <perigoso@riseup.net>

_modulename='xpi2pkgbuild'
pkgname="python-${_modulename}"
pkgver=1.1.0
pkgrel=1
pkgdesc='Mozilla XPI based PKGBUILD generator using mozilla addon API.'
arch=('any')
url='https://github.com/perigoso/xpi2pkgbuild'
license=('MIT')
makedepends=(
  'python-flit'
  'python-build'
  'python-installer'
  'python-wheel'
  'python-setuptools'
)
source=("https://files.pythonhosted.org/packages/source/${_modulename::1}/${_modulename}/${_modulename}-${pkgver}.tar.gz")
b2sums=('86ce5c34d4f4f2886a0ab40586a546582ed6ae565bb71e48142ff89bf8ad4e72bdfda8b10e69d93b2fea9b1ec015be50724fafa67508734cdec2161d5189e7db')

build() {
  cd "${_modulename}-${pkgver}"

  python -m build --wheel --no-isolation
}

package() {
  cd "${_modulename}-${pkgver}"

  python -m installer --destdir="$pkgdir" dist/*.whl
}