27 lines
509 B
Plaintext
27 lines
509 B
Plaintext
# Description: Utility for determining the type of a given file or files.
|
|
# URL: ftp://ftp.fu-berlin.de/unix/tools/file/
|
|
# Maintainer: Christos Zoulas
|
|
# Packager: tnut at nutyx dot org
|
|
|
|
name=file
|
|
version=5.25
|
|
release=1
|
|
|
|
source=(ftp://ftp.astron.com/pub/file/file-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make check
|
|
make DESTDIR=$PKG install
|
|
}
|
|
devel()
|
|
{
|
|
cd $PKG
|
|
bsdtar -cf \
|
|
$PKGMK_PACKAGE_DIR/${name}.devel#$version-any.$PKGMK_PACKAGE_EXT \
|
|
usr/include
|
|
rm -r usr/include
|
|
}
|