main/cppunit/PKGBUILD
demm 3d92ecbe47 rebuilds old main III
gavl sed line needed, used from LFS
ntfs-3g fails to find libgcrypt 1.11.0, 1.10.3 used
straight rebuilds for cppunit, libdv, libxinerama & xl2tpd
2025-01-05 17:11:26 +00:00

32 lines
619 B
Bash

pkgname=cppunit
pkgver=1.15.1
pkgrel=4
pkgdesc="A C++ unit testing framework"
arch=('x86_64')
url="https://www.freedesktop.org/wiki/Software/cppunit/"
license=('LGPL')
depends=('sh' 'gcc-libs')
makedepends=('gcc')
options=('!libtool')
source=("https://dev-www.libreoffice.org/src/${pkgname}-${pkgver}.tar.gz")
sha256sums=('89c5c6665337f56fd2db36bc3805a5619709d51fb136e51937072f63fcc717a7')
build() {
cd ${pkgname}-${pkgver}
./configure --prefix=/usr --disable-static
make
}
check() {
cd ${pkgname}-${pkgver}
make -k check
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}