From 4bbee46fd6247b0c2efbfa285a93fd05076cea5d Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Fri, 25 May 2018 06:03:26 +0000 Subject: [PATCH] removed core/file --- core/file/PKGBUILD | 53 ---------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 core/file/PKGBUILD diff --git a/core/file/PKGBUILD b/core/file/PKGBUILD deleted file mode 100644 index 59bf60120..000000000 --- a/core/file/PKGBUILD +++ /dev/null @@ -1,53 +0,0 @@ -# $Id$ -# Maintainer: Sébastien Luttringer -# Contributor: Allan McRae -# Contributor: Andreas Radke - -# ALARM: Kevin Mihelich -# - --disable-libseccomp - emits bad systems calls on ARM - -pkgname=file -pkgver=5.33 -pkgrel=1 -pkgdesc='File type identification utility' -arch=('x86_64') -license=('custom') -groups=('base' 'base-devel') -url='https://www.darwinsys.com/file/' -depends=('glibc' 'zlib') -source=("ftp://ftp.astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc}) -validpgpkeys=('BE04995BA8F90ED0C0C176C471112AB16CB33B3A') # Christos Zoulas -md5sums=('bbe6db96e3a9ca9554dce647390540ef' - 'SKIP') - -prepare() { - cd $pkgname-$pkgver - # apply patch from the source array (should be a pacman feature) - local filename - for filename in "${source[@]}"; do - if [[ "$filename" =~ \.patch$ ]]; then - msg2 "Applying patch ${filename##*/}" - patch -p1 -N -i "$srcdir/${filename##*/}" - fi - done - : -} - -build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr --datadir=/usr/share/file --enable-fsect-man5 --disable-libseccomp - 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: