Skip to content
Snippets Groups Projects
Commit 69ef4221 authored by Sergej Pupykin's avatar Sergej Pupykin
Browse files

upd linphone stuff

parents
No related branches found
Tags 2.1_3-1
No related merge requests found
PKGBUILD 0 → 100644
# Maintainer: Daniel Milde <daniel at milde dot cz>
# Contributor: Danibspi danibspi <at> gmail <dot> com
pkgname=cunit
pkgver=2.1_3
pkgrel=1
pkgdesc="Lightweight system for writing, administering, and running unit tests in C"
arch=(i686 x86_64)
url="http://cunit.sourceforge.net/"
license=('LGPL2')
depends=('glibc')
options=('!libtool')
source=(https://downloads.sourceforge.net/project/cunit/CUnit/${pkgver/_/-}/CUnit-${pkgver/_/-}.tar.bz2)
sha256sums=('f5b29137f845bb08b77ec60584fdb728b4e58f1023e6f249a464efa49a40f214')
build() {
cd "$srcdir/CUnit-${pkgver/_/-}"
libtoolize --force
aclocal
autoheader
automake --force-missing --add-missing
autoconf
./configure --prefix=/usr
make || return 1
}
package() {
cd "$srcdir/CUnit-${pkgver/_/-}"
make DESTDIR="$pkgdir" install
mv $pkgdir/usr/doc $pkgdir/usr/share/doc
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment