2022-06-12 10:32:23 +02:00
|
|
|
#!/usr/bin/bash
|
|
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
|
|
# Website : https://pozol.eu
|
|
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
|
2022-03-20 13:19:37 +01:00
|
|
|
pkgname=file
|
2022-09-17 21:08:06 +02:00
|
|
|
pkgver=5.43
|
|
|
|
pkgrel=01
|
2022-03-20 13:19:37 +01:00
|
|
|
pkgdesc='File type identification utility'
|
|
|
|
arch=('x86_64')
|
|
|
|
groups=('base-devel')
|
|
|
|
url='https://www.darwinsys.com/file/'
|
|
|
|
depends=('glibc' 'zlib' 'xz' 'bzip2' 'libseccomp' 'libseccomp.so')
|
|
|
|
provides=('libmagic.so')
|
|
|
|
options=('!emptydirs')
|
2022-08-29 21:43:20 +02:00
|
|
|
#options=('!emptydirs' 'debug') ## uncomment this to have the debug pkg produced
|
2022-03-20 13:19:37 +01:00
|
|
|
source=("https://astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
|
|
|
|
|
|
|
|
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
|
|
|
|
echo "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 \
|
|
|
|
--enable-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"
|
|
|
|
}
|
|
|
|
|
2022-06-12 10:32:23 +02:00
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
|
2022-03-20 13:19:37 +01:00
|
|
|
license=('custom')
|
|
|
|
|
|
|
|
validpgpkeys=('BE04995BA8F90ED0C0C176C471112AB16CB33B3A') # Christos Zoulas
|
|
|
|
|
2022-09-17 21:08:06 +02:00
|
|
|
sha256sums=(8c8015e91ae0e8d0321d94c78239892ef9dbc70c4ade0008c0e95894abfb1991 # file-5.43.tar.gz
|
|
|
|
dde8be63c80a6682045621e7182c559c85d41cdde6660daf2428160de7031903) # file-5.43.tar.gz.asc
|
2022-08-29 21:43:20 +02:00
|
|
|
|