aboutsummaryrefslogtreecommitdiffstats
path: root/testing/yara/APKBUILD
blob: 4c37b2df85585a8b76146d68b11bbeb549ec8196 (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
47
48
# Maintainer: Daniel Isaksen <d@duniel.no>

pkgname=yara
pkgver=3.7.0
pkgrel=3
pkgdesc="The pattern matching swiss knife for malware researchers"
url="https://virustotal.github.io/yara/"
arch="all !armhf !armv7"  # armhf: tests fail
license="BSD-3-Clause"
makedepends="automake file-dev openssl-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"
options="!check"		# test-rules crashes on hardened kernel

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.7.0/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
}

sha512sums="cd0214d39c6d1c5bc8410a1ec67e42ec8a672be382fb11e0a0f98cb03af1ef5db92e74216a9b98a6bdedf9721d4470639e340edbd39ca0184233652839742a33  yara-3.7.0.tar.gz"