summaryrefslogtreecommitdiffstats
path: root/bcunit
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2019-11-03 21:33:44 -0500
committerGuillaume Horel <guillaume.horel@gmail.com>2019-11-03 21:34:54 -0500
commit51b7c61b735ea02d2eb832dff3ef5bb1d5cd7740 (patch)
tree9f350069326b7e0721b7ca4d366157420ea4b699 /bcunit
parentdc0b7e4e371e69a388227aaf4459403b37a476f7 (diff)
downloadarch-pkgs-51b7c61b735ea02d2eb832dff3ef5bb1d5cd7740.tar.gz
update submodules
Diffstat (limited to 'bcunit')
-rw-r--r--bcunit/PKGBUILD28
1 files changed, 0 insertions, 28 deletions
diff --git a/bcunit/PKGBUILD b/bcunit/PKGBUILD
deleted file mode 100644
index 0d17601..0000000
--- a/bcunit/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Guillaume Horel <guillaume.horel@gmail.com>
-
-pkgname=bcunit
-pkgver=3.0
-pkgrel=1
-pkgdesc="A fork of CUnit, a C unit testing framework"
-arch=('i686' 'x86_64')
-url="http://www.linphone.org/"
-license=('GPL')
-depends=()
-makedepends=()
-source=("https://github.com/BelledonneCommunications/$pkgname/archive/$pkgver.tar.gz")
-md5sums=('98d9db1210623262a4365bd3381fb7d4')
-
-build() {
- cd "${srcdir}"
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_LIBDIR="/usr/lib" -DCMAKE_INSTALL_PREFIX="/usr" "../$pkgname-$pkgver"
- make
-}
-
-package() {
- cd "${srcdir}/build"
- make DESTDIR="${pkgdir}" install
-}