blob: a07da9ca23f5cf42c8f8b3fbf0ea75a2a90ad0ce (
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
|
# Maintainer: Patrick McCarty <pnorcks at gmail dot com>
pkgname=abireport
pkgver=1.0.5
pkgrel=1
pkgdesc="Tool to create ABI reports from ELF binaries in packaging"
arch=('i686' 'x86_64')
url="https://github.com/clearlinux/abireport"
license=('Apache')
depends=('go')
source=("https://github.com/clearlinux/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz"
"use-unzip-for-eopkg.patch")
sha256sums=('a0b6fa0a5b160e3a40937e7e636729aaf55a033986f8c3abe59742d83216e162'
'5a9930baeb8b850f116b13f8d86a852d0bfd12d642d81f85f69f27e353f0fab9')
prepare() {
cd "$pkgname-$pkgver"
patch -p1 -i "$srcdir/use-unzip-for-eopkg.patch"
}
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
# vim:set ts=8 sts=2 sw=2 et:
|