summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d739da2b7604c1f62b1b02f651a72b21f51722d9 (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
25
26
27
28
29
30
31
32
33
# Maintainer: Matthew McGinn <mamcgi@gmail.com>
pkgname=ply-git
_pkgname=ply
pkgrel=1
pkgver=r322.aa5b9ac
pkgdesc="A light-weight dynamic tracer for Linux"
arch=('x86_64')
url="https://github.com/iovisor/ply"
license=('GPL2')
provides=('ply')
makedepends=('git')
depends=('glibc')
source=("git+https://github.com/iovisor/${_pkgname}")
md5sums=('SKIP')

pkgver() {
    cd "${_pkgname}"
    set -o pipefail
    git describe --long | sed -r 's/([^-]*-g)/r\1/;s/-/./g' ||
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
    cd "${_pkgname}"
    ./autogen.sh   # to generate the configure script
    ./configure --prefix=/usr --sbindir=/usr/bin
    make
}

package() {
    cd "${_pkgname}"
    make DESTDIR="${pkgdir}/" install
}