mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-06 06:02:14 +01:00
49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
# 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"
|