blob: 63c31cdd1a52015624985ff2926dcdd5946c631e (
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
|
# Maintainer: icepie, icepie.dev@gmail.com
# Maintainer: HurricanePootis <hurricanepootis@protonmail.com>
pkgname=bt-dualboot
_pkgname=bt_dualboot
pkgver=1.0.1
pkgrel=4
pkgdesc="Sync Bluetooth for dualboot Linux and Windows"
arch=('any')
url="https://github.com/x2es/bt-dualboot"
license=('GPL-3.0-only')
makedepends=('git' 'python-installer' 'python-wheel' 'python-build' 'python-poetry')
depends=('python' 'chntpw')
_commit=4ccd5da6d06e740e0b49aced4ebe799a974ecd2a
source=("git+$url.git#commit=$_commit")
sha256sums=('d75ea4caf3c77df2d4c8c48a14c915514a4480fea0324275f8322e1ade64247d')
build(){
cd $pkgname
python -m build --wheel --no-isolation
}
package() {
cd $pkgname
python -m installer --destdir="$pkgdir" dist/*.whl
}
|