mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
67 lines
1.8 KiB
Bash
67 lines
1.8 KiB
Bash
# 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
|
|
pkgver=5.38
|
|
pkgrel=3
|
|
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')
|
|
source=("ftp://ftp.astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc}
|
|
file-5.38-seccomp-tcgets.patch
|
|
0001-Revert-Don-t-depend-on-the-execute-bit-to-determine-.patch)
|
|
validpgpkeys=('BE04995BA8F90ED0C0C176C471112AB16CB33B3A') # Christos Zoulas
|
|
sha256sums=('593c2ffc2ab349c5aea0f55fedfe4d681737b6b62376a9b3ad1e77b2cc19fa34'
|
|
'SKIP'
|
|
'da6197e89ca53bd4f0d9009fa3a18c6fdb66dc07eb92e6bd77207eadb4548cfe'
|
|
'5636b444d147d6598c3defd0ce0a9b28056f2f64b09ef7f032337ed0308b8490')
|
|
|
|
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
|
|
msg2 "Applying patch $src..."
|
|
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:
|