mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch from Fedora to fix 32-bit FTBFS
|
|
|
|
pkgname=heaptrack
|
|
pkgver=1.1.0
|
|
pkgrel=6
|
|
arch=(x86_64)
|
|
pkgdesc="A heap memory profiler for Linux"
|
|
url="http://milianw.de/tag/heaptrack"
|
|
license=(GPL)
|
|
depends=(kdiagram threadweaver kitemmodels kio boost-libs hicolor-icon-theme)
|
|
makedepends=(extra-cmake-modules boost sparsehash)
|
|
source=(https://download.kde.org/stable/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz{,.sig}
|
|
heaptrack-fix-build-on-32bit.patch)
|
|
sha256sums=('120f8b276f772aa3409fc3d628dbe7c4fa9d0d98cd710982b6007e6113e13f3b'
|
|
'SKIP'
|
|
'c96023dc03b0b9227f71447f209fc63ee60b7b4a7bec5f92c18aa86693d90ab7')
|
|
validpgpkeys=(3D8568869097C65C98F8D2760C0EB212CD1D1393
|
|
C51B45A532F17FA401D099A0A0C6B72C4F1C5E7C) # Milian Wolff <mail@milianw.de>
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
cd $pkgname-$pkgver
|
|
patch -p1 -i ../heaptrack-fix-build-on-32bit.patch
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake ../$pkgname-$pkgver \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DBUILD_TESTING=OFF
|
|
make
|
|
}
|
|
|
|
package(){
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|