core/file/PKGBUILD

35 lines
726 B
Bash
Raw Normal View History

#
# Core Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas[at]chakra-project[dot]org>
2010-03-13 23:25:19 +08:00
pkgname=file
pkgver=5.11
2011-11-23 04:05:53 +08:00
pkgrel=1
2010-03-13 23:25:19 +08:00
pkgdesc="File type identification utility"
arch=('x86_64')
2010-03-13 23:25:19 +08:00
license=('custom')
groups=('base')
url="http://www.darwinsys.com/file/"
depends=('glibc' 'zlib')
options=('!libtool')
2011-11-23 04:05:53 +08:00
source=("ftp://ftp.astron.com/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz")
md5sums=('16a407bd66d6c7a832f3a5c0d609c27b')
2010-03-13 23:25:19 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2010-03-13 23:25:19 +08:00
./configure --prefix=/usr --datadir=/usr/share/file
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
2011-11-23 04:05:53 +08:00
make DESTDIR="${pkgdir}" install
2010-03-13 23:25:19 +08:00
2011-11-23 04:05:53 +08:00
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
2010-03-13 23:25:19 +08:00
}
2011-11-23 04:05:53 +08:00