main/heimdall: fix linting issues (!872)

This commit is contained in:
Bart Ribbers 2020-01-06 10:24:14 +01:00
parent 9bbaab919b
commit aa3e09e62d
No known key found for this signature in database
GPG key ID: 699D16185DAFAE61

View file

@ -1,23 +1,24 @@
# Contributor: Oliver Smith <ollieparanoid@postmarketos.org>
pkgname=heimdall pkgname=heimdall
pkgver=1.4.2 pkgver=1.4.2
pkgrel=3 pkgrel=4
pkgdesc="Flasher for Samsung Galaxy S devices" pkgdesc="Flasher for Samsung Galaxy S devices"
url="https://gitlab.com/BenjaminDobell/Heimdall" url="https://gitlab.com/BenjaminDobell/Heimdall"
arch="all" arch="all"
license="MIT" license="MIT"
depends=""
makedepends="libusb-dev cmake" makedepends="libusb-dev cmake"
subpackages=""
source=" source="
${url}/-/archive/v${pkgver}/Heimdall-v${pkgver}.tar.gz https://gitlab.com/BenjaminDobell/Heimdall/-/archive/v$pkgver/Heimdall-v$pkgver.tar.gz
heimdall_flash_kernel.sh heimdall_flash_kernel.sh
heimdall_wait_for_device.sh heimdall_wait_for_device.sh
" "
options="!check" options="!check"
builddir="$srcdir"/Heimdall-v$pkgver builddir="$srcdir/Heimdall-v$pkgver"
build() { build() {
cmake -DCMAKE_BUILD_TYPE=Release -DDISABLE_FRONTEND=ON . cmake \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DDISABLE_FRONTEND=ON
make make
} }