From 2f50f637833e98c8bd8b9b7859ef029e216fceae Mon Sep 17 00:00:00 2001 From: Jeff Huang Date: Thu, 25 Oct 2018 04:37:10 +0200 Subject: [PATCH] [skip-ci] bcunit: update to 3.0.2 --- bcunit/PKGBUILD | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/bcunit/PKGBUILD b/bcunit/PKGBUILD index 913c7bf65..112749cff 100644 --- a/bcunit/PKGBUILD +++ b/bcunit/PKGBUILD @@ -3,27 +3,25 @@ # Contributor: Danibspi danibspi gmail com pkgname=bcunit -pkgver=3.0 -_commit=29c556fa8ac1ab21fba1291231ffa8dea43cf32a +pkgver=3.0.2 pkgrel=1 pkgdesc="Lightweight system for writing, administering, and running unit tests in C" arch=(x86_64) url="https://github.com/BelledonneCommunications/bcunit" license=('LGPL2') -options=('!libtool') -#source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/bcunit/archive/$pkgver.tar.gz") -source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/bcunit/archive/${_commit}.zip") -sha256sums=('e255f062249b75bfeb6a1c02943b602709f1f10738144075b036b3231aa4d590') +depends=() +source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/bcunit/archive/$pkgver.tar.gz") +sha256sums=('eb7090aca5006aa0cea425722cb3fa1a7139185a7d9d1734d57844f69084713f') build() { - cd "$srcdir/bcunit-${_commit}" + cd "$srcdir/bcunit-${pkgver}" [ -x configure ] || ./autogen.sh ./configure --prefix=/usr make } package() { - cd "$srcdir/bcunit-${_commit}" + cd "$srcdir/bcunit-${pkgver}" make DESTDIR="$pkgdir" install mv "$pkgdir"/usr/doc "$pkgdir"/usr/share/doc }