diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-09-28 13:32:09 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-09-28 13:32:09 +0200 |
commit | b37f3c0468bf947e32c7d5d2d8bd6d1715a4a8e0 (patch) | |
tree | a0e45295b81fbc7c34df198d38d57e8fddd038cf | |
parent | Initial commit (diff) | |
download | breakpad-git-b37f3c0468bf947e32c7d5d2d8bd6d1715a4a8e0.tar.xz |
-rw-r--r-- | PKGBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -14,17 +14,18 @@ license=('BSD-3clause') depends=() optdepends=() makedepends=('git' 'make') -options=('staticlibs' '!strip') -source=("git+https://chromium.googlesource.com/breakpad/breakpad") conflicts=('google-breakpad-svn' 'google-breakpad-git') -sha512sums=('SKIP') +options=('staticlibs' '!strip') +source=("git+https://chromium.googlesource.com/breakpad/breakpad" + "git+https://chromium.googlesource.com/linux-syscall-support") +sha512sums=('SKIP' 'SKIP') prepare() { cd $srcdir/breakpad/src/third_party - if [ ! -f lss/linux_syscall_support.h ]; then + if [ ! -d lss/ ]; then mkdir lss - curl -L https://chromium.googlesource.com/linux-syscall-support/+/master/linux_syscall_support.h?format=TEXT | base64 --decode > lss/linux_syscall_support.h fi + cp $srcdir/linux-syscall-support/linux_syscall_support.h lss/linux_syscall_support.h } pkgver() { |