2020-01-13 13:51:33 +00:00
|
|
|
# Maintainer: Sébastien Luttringer <seblu@archlinux.org>
|
|
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
|
|
# Contributor: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - remove depends on libseccomp, libseccomp.so
|
|
|
|
# - configure with --disable-libseccomp
|
|
|
|
|
|
|
|
pkgname=file
|
2021-03-31 20:56:21 +00:00
|
|
|
pkgver=5.40
|
2021-09-23 12:46:43 +00:00
|
|
|
pkgrel=6
|
2020-01-13 13:51:33 +00:00
|
|
|
pkgdesc='File type identification utility'
|
|
|
|
arch=('x86_64')
|
|
|
|
license=('custom')
|
|
|
|
groups=('base-devel')
|
|
|
|
url='https://www.darwinsys.com/file/'
|
|
|
|
depends=('glibc' 'zlib' 'xz' 'bzip2')
|
|
|
|
provides=('libmagic.so')
|
2021-04-12 23:36:57 +00:00
|
|
|
source=("https://astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc}
|
2021-05-30 16:25:32 +00:00
|
|
|
"pr256.patch" # fix binary detection that breaks subversion tests
|
2021-09-23 12:46:43 +00:00
|
|
|
"pr259.patch" # mime printing through indirect magic is not taken into account, use match directly so that it does
|
2021-05-30 16:25:32 +00:00
|
|
|
"pr261.patch" # follow-up patch which restores file 5.39 behavior
|
2021-05-11 02:05:35 +00:00
|
|
|
"https://github.com/file/file/commit/9b0459afab309a82aa4e46f73a4e50dd641f3d39.patch")
|
2020-01-13 13:51:33 +00:00
|
|
|
validpgpkeys=('BE04995BA8F90ED0C0C176C471112AB16CB33B3A') # Christos Zoulas
|
2021-03-31 20:56:21 +00:00
|
|
|
sha256sums=('167321f43c148a553f68a0ea7f579821ef3b11c27b8cbe158e4df897e4a5dd57'
|
2021-04-12 23:36:57 +00:00
|
|
|
'SKIP'
|
2021-05-30 16:25:32 +00:00
|
|
|
'5fd8dc41a10ee8097ddbffad37e07ea417b6ea5ff9d416d4aadfe15bc33a46df'
|
2021-09-23 12:46:43 +00:00
|
|
|
'e811744d8e02883e7ddea67497a113db6a9a176dd6c3696d43498ad15440aa6c'
|
2021-05-30 16:25:32 +00:00
|
|
|
'c149311a54ee2539344d6ace2cb733e45bc1c134cd91d50d462dd9edbff916f5'
|
2021-05-11 02:05:35 +00:00
|
|
|
'f5d9c964233b75d6b5ac1b95fe4cc23143fbc6070d3b136e91b542021959e7dd')
|
2020-01-13 13:51:33 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
# apply patch from the source array (should be a pacman feature)
|
|
|
|
local src
|
|
|
|
for src in "${source[@]}"; do
|
|
|
|
src="${src%%::*}"
|
|
|
|
src="${src##*/}"
|
|
|
|
[[ $src = *.patch ]] || continue
|
2020-06-18 02:25:48 +00:00
|
|
|
echo "Applying patch $src..."
|
2020-01-13 13:51:33 +00:00
|
|
|
patch -Np1 < "../$src"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
|
|
|
|
# Fix linking libmagic (vfork needs libpthread)
|
|
|
|
CFLAGS+=" -pthread"
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--datadir=/usr/share/file \
|
|
|
|
--enable-fsect-man5 \
|
|
|
|
--disable-libseccomp
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make check
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|