mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
30 lines
815 B
Bash
30 lines
815 B
Bash
pkgname=lcov
|
|
pkgver=1.13
|
|
pkgrel=2
|
|
pkgdesc="front-end for GCC's coverage testing tool gcov"
|
|
arch=('any')
|
|
url="http://ltp.sourceforge.net/coverage/lcov.php"
|
|
license=('GPL')
|
|
depends=('perl')
|
|
source=("http://downloads.sourceforge.net/ltp/$pkgname-$pkgver.tar.gz"
|
|
"handle-equals-signs.patch"
|
|
"fix-undef-behaviour.patch"
|
|
)
|
|
sha256sums=('44972c878482cc06a05fe78eaa3645cbfcbad6634615c3309858b207965d8a23'
|
|
'54728aa4e244d3662c65ba91fb486dc1d5c64d9d55745ee334c4131109dc233c'
|
|
'ceaf41f7cc9cea5a6fc4b0385ffef10d1ab8812acd2a5b16dcd8d7bca7120488')
|
|
|
|
prepare()
|
|
{
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
patch -p1 -i $srcdir/handle-equals-signs.patch
|
|
patch -p1 -i $srcdir/fix-undef-behaviour.patch
|
|
}
|
|
|
|
package()
|
|
{
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make PREFIX=/usr DESTDIR="$pkgdir" install
|
|
}
|