summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9f44626a61c5a2ea1932a1a66685654f12c1a411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Edi Z <Penguin-Dev93@pm.me>
pkgname=remindmez
pkgver=1.0.0
pkgrel=1
pkgdesc="A fun CLI reminder tool with ASCII penguins and notifications"
arch=('any')
url="https://github.com/Penguin-Dev93/remindmez"
license=('MIT')
depends=('python' 'python-plyer' 'python-pyfiglet')
makedepends=('python-build' 'python-installer' 'python-wheel' 'git')
source=("https://github.com/Penguin-Dev93/remindmez/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('9e92b3219528049a097f33f390d2f82d50a8e75cd3c29cdecff2ad13509e5c60')

build() {
  cd "$srcdir/$pkgname"
  python -m build --wheel --no-isolation
}

package() {
  cd "$srcdir/$pkgname"
  python -m installer --destdir="$pkgdir" dist/*.whl
}