blob: 5cf54abc7174eeccd13d02f2fbc97cf4811dd1bd (
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: Miodrag Tokić
pkgname=python-sqlglot
pkgver=25.33.0
pkgrel=1
pkgdesc='An easily customizable SQL parser and transpiler'
arch=('any')
url='https://github.com/tobymao/sqlglot'
license=('MIT')
depends=('python')
makedepends=(
'python-build'
'python-installer'
'python-wheel'
'python-setuptools'
'python-setuptools-scm'
)
options=(!emptydirs)
source=("$pkgname-$pkgver.tar.gz::https://github.com/tobymao/sqlglot/archive/v${pkgver}.tar.gz")
sha256sums=('eff19e6259024776226241f1a00d33644b12ed2226311a4c8dd2003184878099')
build() {
cd "$srcdir/sqlglot-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/sqlglot-${pkgver}"
install -D -m 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|