Skip to content

Commit d703089

Browse files
committed
[FIX] PKGBUILD
1 parent b0fef9c commit d703089

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

PKGBUILD

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
# Maintainer: Arnaud Gissinger <agissing@student.42.fr>
22
pkgname=rofi-notion
3-
pkgver=2.0.2
3+
pkgver=2.0.3
44
pkgrel=1
55
pkgdesc="Quickly create new Notion pages for your databases with rofi as GUI."
66
arch=('any')
77
url="https://github.com/mathix420/rofi-notion"
88
license=('MIT')
99
depends=('python>=3.7')
10-
makedepends=(python-build python-installer)
10+
makedepends=(python-build python-installer python-setuptools)
1111
provides=('rofi-notion')
1212
source=("$pkgname-$pkgver.tar.gz::https://github.com/mathix420/rofi-notion/archive/refs/tags/v$pkgver.tar.gz")
1313
sha256sums=('SKIP')
1414

1515
build() {
1616
cd "$pkgname-$pkgver"
1717
rm .python-version
18-
python -m build --wheel # --no-isolation
18+
python -m build --wheel --no-isolation
1919
}
2020

2121
package() {
2222
cd "$pkgname-$pkgver"
2323
python -m installer --destdir="$pkgdir" dist/*.whl
24+
install -Dm 644 LICENSE.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
2425
}

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
[build-system]
2+
requires = ["setuptools >= 56"]
3+
14
[project]
25
name = "rofi-notion"
3-
version = "2.0.2"
6+
version = "2.0.3"
47
authors = [
58
{name = "Arnaud Gissinger", email = "agissing@student.42.fr"},
69
]

0 commit comments

Comments
 (0)