blob: feb0cadd0edfa63bba53a5101a5574fd6929c5f9 (
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: Junxuan Liao <mikeljx at 126 dot com>
_pkgname=xdpss
pkgname=$_pkgname-git
pkgver=r5.6853b7e
pkgrel=1
pkgdesc="Initiate screencast with the help of XDG Desktop portals"
arch=('any')
url="https://github.com/MikeWalrus/xdpss"
license=('GPL-3.0-only')
depends=('dbus-python' 'python-gobject')
makedepends=('git' 'python-build' 'python-installer' 'python-wheel' 'python-setuptools')
optdepends=('gstreamer: stream or record screen')
source=("git+$url")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${_pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
build() {
cd "${srcdir}/${_pkgname}"
python -m build --wheel --no-isolation
}
package() {
cd "${srcdir}/${_pkgname}"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm 755 example/{xdpss-mirror.sh,stream-pw-node.sh} "${pkgdir}/usr/bin/"
}
|