pkgbuilds/scrcpy/PKGBUILD

33 lines
988 B
Bash
Raw Normal View History

2019-10-05 11:37:01 +08:00
# Contributor: Andrew Rabert <ar@nullsum.net>
pkgname=scrcpy
2021-01-02 09:48:45 +08:00
pkgver=1.17
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-01-02 09:48:45 +08:00
sha256sums=('c16f1fe1789290d0c7dd3a2778f33d6dc6347ffe3e78e64127b85eda52420d7f'
'11b5ad2d1bc9b9730fb7254a78efd71a8ff46b1938ff468e47a21b653a1b6725')
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
}