summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0fb31d9677a6807b0e033dbadc9a90c911858e94 (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
# Maintainer: Lucas Carvalho <zsinx6@users.noreply.github.com>

_name=musthe
pkgname="python-${_name}"
pkgver="1.0.0"
pkgrel=1
pkgdesc=" Music theory implemented in Python. Notes, intervals, scales and chords."
url="https://github.com/gciruelos/musthe"
arch=("any")
license=("MIT")
depends=("python")
makedepends=("python-setuptools")
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
sha256sums=("46825a7fcbf638e2617277c2ddfceac658e09fab9746e2bff17c9a548278f6ee")


build() {
  cd "${_name}-${pkgver}"
  python setup.py build
}

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