diff options
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | PKGBUILD | 15 |
2 files changed, 13 insertions, 16 deletions
@@ -1,15 +1,13 @@ -# Generated by mksrcinfo v8 -# Mon Jan 29 09:18:42 UTC 2018 pkgbase = cpptest - pkgdesc = Portable and powerful unit testing framework for handling automated tests in C++ - pkgver = 1.1.2 - pkgrel = 2 - url = http://cpptest.sourceforge.net + pkgdesc = C++ Unit Testing Framework + pkgver = 2.0.0 + pkgrel = 1 + url = https://github.com/cpptest/cpptest arch = x86_64 license = LGPL depends = gcc-libs - source = https://downloads.sourceforge.net/cpptest/cpptest-1.1.2.tar.gz - md5sums = 79b9bff371d182f11a3235969f84ccb6 + source = cpptest-2.0.0.tar.gz::https://github.com/cpptest/cpptest/archive/2.0.0.tar.gz + md5sums = 3956c47d692f2dbdf22730a3f0c86310 pkgname = cpptest @@ -2,19 +2,19 @@ # Contributor: Juan Pablo Gonzalez Tognarelli <lord_jotape@yahoo.com.ar> pkgname=cpptest -pkgver=1.1.2 -pkgrel=2 -pkgdesc="Portable and powerful unit testing framework for handling automated tests in C++" -url="http://cpptest.sourceforge.net" +pkgver=2.0.0 +pkgrel=1 +pkgdesc="C++ Unit Testing Framework" +url="https://github.com/cpptest/cpptest" license=('LGPL') arch=('x86_64') depends=('gcc-libs') -source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('79b9bff371d182f11a3235969f84ccb6') - +source=($pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz) +md5sums=('3956c47d692f2dbdf22730a3f0c86310') build() { cd "$pkgname-$pkgver" + ./autogen.sh ./configure --prefix=/usr make } @@ -28,4 +28,3 @@ package() { cd "$pkgname-$pkgver" make DESTDIR="$pkgdir" install } - |