# Maintainer: Sébastien Luttringer <seblu@archlinux.org>
# Contributor: Allan McRae <allan@archlinux.org>
# Contributor: Andreas Radke <andyrtr@archlinux.org>

pkgname=file
pkgver=5.45
pkgrel=1.1
pkgdesc='File type identification utility'
license=('custom')
ncxfab_makedepends=(base-devel)
url='https://www.darwinsys.com/file/'
ncxfat_makedepends=(
  'binutils'
  'glibc'
  'zlib'
  'xz'
  'bzip2'
  'libseccomp' 'libseccomp.so'
  'zstd' 'libzstd.so'
)
provides=('libmagic.so')
options=('!emptydirs')
source=("https://astron.com/pub/file/file-$pkgver.tar.gz") # {,.asc}
validpgpkeys=('BE04995BA8F90ED0C0C176C471112AB16CB33B3A') # Christos Zoulas
sha256sums=('fc97f51029bb0e2c9f4e3bffefdaf678f0e039ee872b9de5c002a6d09c784d82'
            #'SKIP'
           )

prepare() {
  cd file-$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
    echo "Applying patch $src..."
    patch -Np1 < "../$src"
  done
}

build() {
  cd file-$pkgver

  # Fix linking libmagic (vfork needs libpthread)
  CFLAGS+=" -pthread"

  ./configure \
    --prefix=$MPKG_USRPATH \
    --host=$MPKG_TARGETMACHINE \
    --datadir=$MPKG_USRPATH/share/file \
    --enable-fsect-man5 \
    --enable-libseccomp
  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
  make
}

check() {
  cd file-$pkgver
  make check
}

package() {
  ncxfat_depends=(
    glibc
    zlib
    xz
    bzip2
    libseccomp 'libseccomp.so'
    zstd 'libzstd.so'
  )
  cd file-$pkgver
  make DESTDIR="$pkgdir" install
  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}

# vim:set ts=2 sw=2 et:
