blob: 580e77b1f9c8d920d74b25193f0e626ddd22061c (
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: Michał Wojdyła < micwoj9292 at gmail dot com >
pkgname=annobin
pkgver=12.84
pkgrel=1
pkgdesc="A binary annotation and examination package."
arch=('i686' 'x86_64' 'armv7h' 'aarch64')
url=https://sourceware.org/$pkgname
license=(GPL3)
depends=(rpm-tools)
optdepends=(
'gcc: gcc plugin'
)
source=($pkgname-$pkgver.tar.xz::https://nickc.fedorapeople.org/$pkgname-$pkgver.tar.xz)
sha256sums=('2ce64109a6203a6cea6d12285b8eeca9ad44b43e9f6fec2d2836f82c84da0230')
build() {
cd $pkgname-$pkgver
# ./autogen.sh
./configure --prefix=/usr --without-clang-plugin --without-llvm-plugin --with-debuginfod=no
make
}
# fails since 12.82
_check() {
cd $pkgname-$pkgver
make -k check
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir/" install
}
|