pkgbuilds/scrcpy/PKGBUILD

33 lines
988 B
Bash
Raw Permalink Normal View History

2019-10-05 11:37:01 +08:00
# Contributor: Andrew Rabert <ar@nullsum.net>
pkgname=scrcpy
2021-09-11 05:05:41 +08:00
pkgver=1.19
pkgrel=1
2019-10-05 11:37:01 +08:00
pkgdesc='Display and control your Android device'
arch=('aarch64')
url='https://github.com/Genymobile/scrcpy'
license=('Apache')
depends=('android-tools' 'ffmpeg' 'sdl2')
2019-10-05 11:37:01 +08:00
makedepends=('meson')
source=("https://github.com/Genymobile/scrcpy/archive/v${pkgver}.tar.gz"
2019-11-20 12:16:21 +08:00
"https://github.com/Genymobile/scrcpy/releases/download/v${pkgver}/scrcpy-server-v${pkgver}")
2021-09-11 05:05:41 +08:00
sha256sums=('40ac2059618f18a0e6f9cd0e40d3bff240ade98664bd619422f875bff7e8c70e'
'876f9322182e6aac6a58db1334f4225855ef3a17eaebc80aab6601d9d1ecb867')
2019-10-05 11:37:01 +08:00
build() {
2019-12-11 14:26:34 +08:00
cd "${pkgname}-${pkgver}"
meson \
--prefix /usr \
--buildtype release \
--strip \
-Dprebuilt_server="../scrcpy-server-v${pkgver}" \
build
ninja -C build
2019-10-05 11:37:01 +08:00
}
package() {
2019-12-11 14:26:34 +08:00
cd "${pkgname}-${pkgver}"
DESTDIR="${pkgdir}" ninja -C build install
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
2019-10-05 11:37:01 +08:00
}