[arch-commits] Commit in bcunit/trunk (PKGBUILD)
Antonio Rojas
arojas at archlinux.org
Mon Dec 9 18:05:54 UTC 2019
Date: Monday, December 9, 2019 @ 18:05:54
Author: arojas
Revision: 536420
Fix missing symbol
Modified:
bcunit/trunk/PKGBUILD
----------+
PKGBUILD | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2019-12-09 17:59:17 UTC (rev 536419)
+++ PKGBUILD 2019-12-09 18:05:54 UTC (rev 536420)
@@ -4,7 +4,7 @@
pkgname=bcunit
pkgver=3.0.2
-pkgrel=3
+pkgrel=4
pkgdesc="Lightweight system for writing, administering, and running unit tests in C"
arch=(x86_64)
url="https://github.com/BelledonneCommunications/bcunit"
@@ -11,11 +11,16 @@
license=(LGPL)
depends=(glibc)
makedepends=(cmake)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/bcunit/archive/$pkgver.tar.gz")
-sha256sums=('eb7090aca5006aa0cea425722cb3fa1a7139185a7d9d1734d57844f69084713f')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/bcunit/archive/$pkgver.tar.gz"
+ bcunit-missing-symbol.patch::"https://github.com/BelledonneCommunications/bcunit/commit/2066c388.patch")
+sha256sums=('eb7090aca5006aa0cea425722cb3fa1a7139185a7d9d1734d57844f69084713f'
+ '21f7fc5e1fda61c89933ef037dbf55e7e4c68e81e706de25e6a047a65a599d92')
prepare() {
mkdir -p build
+
+ cd $pkgname-$pkgver
+ patch -p1 -i ../bcunit-missing-symbol.patch # Fix missing symbols
}
build() {
More information about the arch-commits
mailing list