summaryrefslogtreecommitdiff
path: root/pcr/bcunit-git
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-07-10 22:50:24 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-07-10 22:50:24 -0500
commit301747973063d5edd07166be5d1acba05233193e (patch)
treee1ec190d8d826a4bf595a5c93330b6dfe56a0937 /pcr/bcunit-git
parent166e091114798b0472bd3cb0fb9610c5aab313f0 (diff)
downloadabslibre-301747973063d5edd07166be5d1acba05233193e.tar.gz
abslibre-301747973063d5edd07166be5d1acba05233193e.tar.bz2
abslibre-301747973063d5edd07166be5d1acba05233193e.zip
Removing bcunit-git. Use bcunit instead
Diffstat (limited to 'pcr/bcunit-git')
-rw-r--r--pcr/bcunit-git/PKGBUILD36
1 files changed, 0 insertions, 36 deletions
diff --git a/pcr/bcunit-git/PKGBUILD b/pcr/bcunit-git/PKGBUILD
deleted file mode 100644
index 2b2c3ccef..000000000
--- a/pcr/bcunit-git/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# Maintainer: André Silva <emulatorman@parabola.nu>
-
-_pkgname=bcunit
-pkgname="bcunit-git"
-pkgver=r196.f0c669c
-pkgrel=1
-pkgdesc="A fork of the defunct project CUnit, with several fixes and patches applied"
-arch=('x86_64' 'i686')
-url="https://github.com/BelledonneCommunications/bcunit"
-license=('GPL2')
-makedepends=('cmake' 'git')
-conflicts=("${_pkgname}")
-provides=("${_pkgname}")
-source=("${_pkgname}-${pkgver}::git+https://github.com/BelledonneCommunications/bcunit#branch=master")
-sha256sums=('SKIP')
-
-pkgver() {
- cd $_pkgname-$pkgver
- printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
-}
-
-build() {
- cd $_pkgname-$pkgver
- cmake . -DCMAKE_INSTALL_PREFIX=$pkgdir/usr
- make
-}
-
-package() {
- cd $_pkgname-$pkgver
- make install
-
- if [ "${CARCH}" = "x86_64" ]; then
- cd "${pkgdir}"
- mv usr/lib64 usr/lib
- fi
-}