description="Lightweight system for writing, administering, and running unit tests in C"
url="https://github.com/BelledonneCommunications/bcunit"

packager="Great-OS Team"
maintainer="Great-OS Team"

name=bcunit
version=5.4.66
release=1

PKGMK_KEEP_SOURCES="no"
source=(https://github.com/BelledonneCommunications/bcunit/archive/$version.tar.gz)

build() {
  cd "bcunit-${version}"
  [ -x configure ] || ./autogen.sh
  ./configure --prefix=/usr
  make
}

package() {
  cd "bcunit-${version}"
  make DESTDIR="$PKG" install
  mv "$PKG"/usr/doc "$PKG"/usr/share/doc
  # Remove obsolete lib
  rm $PKG/usr/lib/libbcunit.la
}
