mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-16 03:02:47 +02:00
60 lines
1.2 KiB
Plaintext
60 lines
1.2 KiB
Plaintext
# Contributor: Valery Kartel <valery.kartel@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=file
|
|
pkgver=5.45
|
|
pkgrel=1
|
|
pkgdesc="File type identification utility"
|
|
url="https://www.darwinsys.com/file/"
|
|
arch="all"
|
|
license="BSD-2-Clause"
|
|
makedepends="autoconf libtool automake"
|
|
subpackages="libmagic-static $pkgname-dev $pkgname-doc libmagic"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/file/file/archive/FILE${pkgver/./_}.tar.gz"
|
|
builddir="$srcdir/$pkgname-FILE${pkgver/./_}"
|
|
|
|
# secfixes:
|
|
# 5.37-r1:
|
|
# - CVE-2019-18218
|
|
# 5.36-r0:
|
|
# - CVE-2019-1543
|
|
# - CVE-2019-8904
|
|
# - CVE-2019-8905
|
|
# - CVE-2019-8906
|
|
# - CVE-2019-8907
|
|
|
|
prepare() {
|
|
default_prepare
|
|
|
|
autoreconf -fvi
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--datadir=/usr/share \
|
|
--enable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
libmagic() {
|
|
pkgdesc="File type identification library"
|
|
|
|
amove \
|
|
usr/lib/libmagic.so.* \
|
|
usr/share/misc/magic.mgc
|
|
}
|
|
|
|
sha512sums="
|
|
fdd4c5d13d5ea1d25686c76d8ebc3252c54040c4871e3f0f623c4548b3841795d4e36050292a9453eedf0fbf932573890e9d6ac9fa63ccf577215598ae84b9ea file-5.45.tar.gz
|
|
"
|