Overview
Comment: | Added coreutils package |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | packages |
Files: | files | file ages | folders |
SHA1: | cf57024dfaed8a7be825a0b2bb6517ad1543cd7a |
User & Date: | rkeene on 2014-11-12 09:30:52 |
Other Links: | manifest | tags |
Context
2014-11-12
| ||
09:53 | Updated to use default-symver (unless requested not to) check-in: 9650feac01 user: rkeene tags: packages | |
09:30 | Added coreutils package check-in: cf57024dfa user: rkeene tags: packages | |
09:29 | Updated to search in requested headers last rather than first, as if they were system headers check-in: 6fac0b6f10 user: rkeene tags: packages | |
Changes
Added pkgs/coreutils version [a1c739d508].
1 +#! /usr/bin/env bash 2 + 3 +version='8.23' 4 +url="http://ftp.gnu.org/gnu/coreutils/coreutils-${version}.tar.xz" 5 +domain=core.appfs.rkeene.org 6 +sha256='ec43ca5bcfc62242accb46b7f121f6b684ee21ecd7d075059bf650ff9e37b82d' 7 +require=(attr acl libcap) 8 +configure_extra=(--without-gmp) 9 + 10 +function preconfigure() { 11 + DEFAULT_POSIX2_VERSION=199209 12 + export DEFAULT_POSIX2_VERSION 13 +}