mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:47:21 +08:00
47 lines
991 B
Bash
47 lines
991 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=coreutils
|
|
pkgver=8.25
|
|
pkgrel=1
|
|
pkgdesc="The basic file, shell and text manipulation utilities of the GNU operating system"
|
|
arch=('x86_64')
|
|
license=('GPL3')
|
|
url="http://www.gnu.org/software/coreutils"
|
|
groups=('base')
|
|
depends=('glibc' 'pam' 'acl' 'gmp' 'libcap')
|
|
install=${pkgname}.install
|
|
source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
|
|
validpgpkeys=('6C37DC12121A5006BC1DB804DF6FD971306037D9')
|
|
md5sums=('070e43ba7f618d747414ef56ab248a48'
|
|
'SKIP')
|
|
|
|
#prepare() {
|
|
# cd $pkgname-$pkgver
|
|
#}
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
--with-openssl \
|
|
--enable-no-install-program=groups,hostname,kill,uptime
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make RUN_EXPENSIVE_TESTS=yes check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|
|
|