PKGBUILDs/core/file/PKGBUILD

64 lines
1.6 KiB
Bash
Raw Normal View History

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
2023-08-13 15:51:16 +00:00
pkgver=5.45
pkgrel=1
2020-01-13 13:51:33 +00:00
pkgdesc='File type identification utility'
arch=('x86_64')
license=('custom')
url='https://www.darwinsys.com/file/'
2023-02-24 01:26:42 +00:00
depends=('glibc' 'zlib' 'xz' 'bzip2' 'zstd' 'libzstd.so')
2020-01-13 13:51:33 +00:00
provides=('libmagic.so')
2023-02-14 00:22:36 +00:00
options=('!emptydirs')
2021-10-20 12:48:38 +00:00
source=("https://astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
2020-01-13 13:51:33 +00:00
validpgpkeys=('BE04995BA8F90ED0C0C176C471112AB16CB33B3A') # Christos Zoulas
2023-08-13 15:51:16 +00:00
sha256sums=('fc97f51029bb0e2c9f4e3bffefdaf678f0e039ee872b9de5c002a6d09c784d82'
2021-10-20 12:48:38 +00:00
'SKIP')
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: