New package: cpptest-1.1.2

This commit is contained in:
mobinmob 2018-09-28 19:38:28 +03:00 committed by maxice8
parent 4dd2fdf435
commit 8de725f187
3 changed files with 32 additions and 0 deletions

View File

@ -3317,3 +3317,4 @@ libOpenCL.so.1 ocl-icd-2.2.12_1
libdleyna-core-1.0.so.5 dleyna-core-0.6.0_1
libdleyna-renderer-1.0.so.1 dleyna-renderer-0.6.0_1
libdleyna-server-1.0.so.1 dleyna-server-0.6.0_1
libcpptest.so.0 cpptest-1.1.2_1

1
srcpkgs/cpptest-devel Symbolic link
View File

@ -0,0 +1 @@
cpptest

30
srcpkgs/cpptest/template Normal file
View File

@ -0,0 +1,30 @@
# Template file for 'cpptest'
pkgname=cpptest
version=1.1.2
revision=1
build_style=gnu-configure
build_wrksrc="$pkgname"
hostmakedepends="autoconf automake libtool"
short_desc="C++ Unit Testing Framework"
maintainer="mobinmob <mobinmob@disroot.org>"
license="LGPL-2.1-or-later"
homepage="https://github.com/cpptest/cpptest"
distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
checksum=9b15cc5b08fa52eaeb5199e214a1a7c5e821240ff8514664710986cb02d60e9b
pre_configure() {
./autogen.sh
}
post_install() {
vlicense COPYING
}
cpptest-devel_package() {
depends="$makedepends cpptest-${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/libcpptest.a
}
}