summaryrefslogtreecommitdiff
path: root/python-pyshortcuts/PKGBUILD
blob: e8032799e1ea28633ea0c625b62d79e9b35509a8 (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
37
38
39
# Maintainer: Erich Eckner <arch at eckner dot net>

pkgname='python-pyshortcuts'
_pkgname='pyshortcuts'
pkgver=1.8.0
pkgrel=1
pkgdesc='create desktop shortcuts to python scripts on Windows, Mac, or Linux'
arch=('any')
url='https://github.com/newville/pyshortcuts'
license=('MIT')
makedepends=(
  'python-setuptools')
depends=(

  'python>=3.9'
  'python<3.10')
source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/newville/${_pkgname}/archive/${pkgver}.tar.gz")
sha512sums=('7ee215408a5616f6b0c41620be6fc0af80cb0d8cc4b854eb596f4a80a851a074f38b8f6e8e442414ec41ccb1831b07dfa5272b1d06d4c747104a111fa84c6d07')

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

package() {
  cd "${srcdir}/${_pkgname}-${pkgver}"
  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
  errors=$(
    find "${pkgdir}/usr/lib"/python*/site-packages/pyshortcuts-*.egg-info -name 'requires.txt' -execdir cat {} \; \
      | sed 's/^/python-/' \
      | grep -vxF "$(printf '%s\n' "${depends[@]}")"
  ) || true
  if [ -n "${errors}" ]; then
    echo 'missing dependencies:'
    printf '%s\n' "${errors}"
    return 1
  fi
  rm -rf --one-file-system "${pkgdir}/usr/bin"
}