aboutsummaryrefslogtreecommitdiffstats
path: root/testing/yara/APKBUILD
blob: a7769421faf1b41c9fe80992aaba3559f499563c (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
42
43
44
45
46
# Maintainer: Daniel Isaksen <d@duniel.no>

pkgname=yara
pkgver=3.6.3
pkgrel=1
pkgdesc="The pattern matching swiss knife for malware researchers"
url="https://virustotal.github.io/yara/"
arch="all !armhf"  # armhf: tests fail
license="BSD-3-Clause"
makedepends="automake file-dev libressl-dev autoconf libtool flex"
source="$pkgname-$pkgver.tar.gz::https://github.com/VirusTotal/$pkgname/archive/v$pkgver.tar.gz"
subpackages="$pkgname-doc"
builddir="$srcdir/$pkgname-$pkgver"

prepare() {
	default_prepare
	# Delete re_lexer.c to force it to be build with new version
	# of flex, othwewise tests fail in some arches because of a bug
	# in older version of flex.
	# See: https://github.com/VirusTotal/yara/issues/771
	rm "$srcdir"/yara-3.6.3/libyara/re_lexer.c
}
build() {
	cd "$builddir"
	autoreconf -fiv
	./configure \
		--prefix=/usr \
		--with-crypto \
		--enable-magic
	make
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
	install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname"/COPYING
	install -Dm 644 README.md "$pkgdir/usr/share/doc/$pkgname"/README.md
	cp -r docs "$pkgdir/usr/share/doc/$pkgname"
}

check() {
	cd "$builddir"
	make check || return 1
}

sha512sums="f928fe93e93385b5711c1076b042473299e1eb1c7c345433b01b7638677d9b8fb95a8ac2a7ef52012dc178ec0ef5772d6b6d0b65b5717d2074290bb44031b3f8  yara-3.6.3.tar.gz"