summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b8f377ba09f891a62f01358c93c9bd22a18fed27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Contributor <Jelle van der Waa jelle@vdwaa.nl>

pkgname=memleax
pkgver=1.1.1
pkgrel=1
pkgdesc="debugs memory leak of running process, without recompiling or restarting"
arch=('x86_64' 'i686')
url="https://github.com/WuBingzheng/memleax"
license=('GPL')
depends=('libunwind' 'libdwarf')
source=("https://github.com/WuBingzheng/memleax/archive/v$pkgver.tar.gz")
md5sums=('267bcb794968f328856a320cdb457cee')

build() {
	cd "${pkgname}-${pkgver}"

	./configure --prefix=/usr/
	make
}

package() {
	cd "${pkgname}-${pkgver}"
        make DESTDIR="${pkgdir}" install
}