Discarded code for copying Changelog in base/acpid Upgraded base/attr to 2.5.1 Replaced CFLAGS with LDFLAGS for static linking in base/coreutils Removed code that stripped static archive in base/curl Removed -L/lib flag in LDFLAGS in base/e2fsprogs and partly fixed make install line Fixed subshell code order in base/file Disabled compile tests in base/fmt base/fuse2 's init script path is now passed to configure to remove any need for post compile path and directory fixes Fixed hardcoded init path in base/fuse3 and removed related unnecessary code Disabled static lib generation in base/gmp Base/gpgme now only builds for predefined languages Rewrote entire build code in base/tree Partly rewrote build code in base/zip
53 lines
1.5 KiB
Text
Executable file
53 lines
1.5 KiB
Text
Executable file
app=file
|
|
version=5.39
|
|
build=4sml
|
|
homepage="https://www.darwinsys.com/file/"
|
|
download="http://astron.com/pub/file/file-$version.tar.gz"
|
|
desc="Utility to determine file types"
|
|
requires="bzip2 zlib"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
applypatch $srcdir/file.etc.file.diff
|
|
applypatch $srcdir/file.short.diff
|
|
}
|
|
|
|
build() {
|
|
# linking against libseccomp causes weird "Bad system call" issues
|
|
CFLAGS+=" --std=c99" \
|
|
./configure \
|
|
--prefix="" \
|
|
--datadir=/etc \
|
|
--enable-fsect-man5 \
|
|
--disable-libseccomp
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
# Install the flat files
|
|
# We'll regenerate /etc/file/magic.mgc in the doinst.sh
|
|
#rm $pkg/etc/file/magic.mgc
|
|
mkdir -p $pkg/etc/file/magic
|
|
cp -a magic/Magdir/* $pkg/etc/file/magic/
|
|
chmod 0644 $pkg/etc/file/magic/*
|
|
|
|
install -Dm 755 $srcdir/recompile_magic.mgc.sh $pkg/etc/file/recompile_magic.mgc.sh
|
|
|
|
cp COPYING $pkgdocs/
|
|
|
|
( cd $pkg/etc ; ln -sf file misc )
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
706f52abe8a4140983c03bc9403987153e3996a8bfbfd20d94f82fc7781c710a54e57b8967c8885e0ceec83f86ff0acca14b6d051b854f79df7aaa626d7068b8 file-5.39.tar.lz
|
|
3d5549ee9ec1357cd016b120c519c36b3f9fc1cd5f56a34ae5437ff0a9a536a0fa678dd151604e1d0b43c995fe766df5caf950e025c1ca1471f7bcc8715eca73 file.etc.file.diff
|
|
66c7ba2a0d963c12df85408cd07d26cc55ba8cefb117ea322091e63af5aabd6df6ca389139a8f8338ea0edd244dbe43e385799381de1b8c0d33137374b3d5734 file.short.diff
|
|
"
|