# Maintainer: Chocobo1 pkgname=coreutils-git pkgver=9.3.r29.g059e53e5b pkgrel=1 pkgdesc="Basic file, shell and text manipulation utilities of the GNU operating system" arch=('i686' 'x86_64') url="https://www.gnu.org/software/coreutils/coreutils.html" license=('GPL3') depends=('glibc' 'gmp' 'libcap' 'openssl') makedepends=('git' 'gettext' 'gperf' 'gzip' 'perl' 'rsync' 'tar' 'texinfo' 'wget') provides=("coreutils=$pkgver") conflicts=('coreutils') source=("git+https://git.savannah.gnu.org/git/coreutils.git") sha256sums=('SKIP') pkgver() { cd "coreutils" git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' } build() { cd "coreutils" ./bootstrap ./configure \ --prefix="/usr" \ --libexecdir="/usr/lib" \ --with-openssl \ --enable-no-install-program="groups,hostname,kill,uptime" make } check() { cd "coreutils" #make check } package() { cd "coreutils" make DESTDIR="$pkgdir" install }