mirror of
https://github.com/kbumsik/VirtScreen.git
synced 2025-02-15 04:41:50 +00:00
25 lines
816 B
Bash
25 lines
816 B
Bash
# Maintainer: Luis Martinez <luis dot martinez at tuta dot io>
|
|
# Contributor: Bumsik Kim <k.bumsik@gmail.com>
|
|
|
|
pkgname=virtscreen
|
|
pkgver=0.3.2
|
|
pkgrel=0
|
|
pkgdesc="Make your iPad/tablet/computer as a secondary monitor on Linux"
|
|
arch=('any')
|
|
url="https://github.com/dderjoel/VirtScreen"
|
|
license=('GPL3')
|
|
depends=('xorg-xrandr' 'x11vnc' 'python-pyqt5' 'qt5-quickcontrols2' 'python-qasync' 'python-netifaces')
|
|
makedepends=('python-setuptools')
|
|
optdepends=('arandr: for display settings option')
|
|
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
|
|
sha256sums=('fdf4192829a1b2c2554e2f33b1c12756d34b691aad280bee207db3c9cd62f11d')
|
|
|
|
build() {
|
|
cd "VirtScreen-$pkgver"
|
|
python setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "VirtScreen-$pkgver"
|
|
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
|
|
}
|