summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7ea659182687a494b2e48fb9adfbdfb246656804 (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
34
35
36
37
38
39
40
41
# Maintainer: Adrian Perez de Castro <aperez@igalia.com>
# Contributor: Yamakaky <yamakaky@yamaworld.fr>
pkgname=bloaty-git
pkgver=1.1.r288.ge115514
pkgrel=1
pkgdesc='A size profiler for binaries'
arch=(x86_64 i686)
url=https://github.com/google/bloaty
license=(Apache)
optdepends=(re2 capstone protobuf abseil-cpp)
makedepends=(git cmake ninja)
conflicts=(bloaty)
source=("${pkgname}::git+${url}")
b2sums=('SKIP')

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

build() {
    rm -rf build
    cmake -GNinja \
        -DCMAKE_INSTALL_PREFIX=/usr \
		-DBUILD_TESTING=OFF \
        -DBLOATY_ENABLE_CMAKETARGETS=OFF \
        -S"${srcdir}/${pkgname}" -Bbuild
	ninja -Cbuild
}

package() {
    cd "${srcdir}/build"
    install -Dm755 "${srcdir}/build/bloaty" \
        "${pkgdir}/usr/bin/bloaty"
    install -Dm644 "${srcdir}/${pkgname}/README.md" \
        "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}