Ticket #8525: Portfile

File Portfile, 1.1 KB (added by wyuenho (Jimmy Yuen Ho Wong), 18 years ago)

5.96 Portfile

Line 
1# $Id: $
2
3PortSystem 1.0
4name             coreutils
5version          5.96
6categories       sysutils
7maintainers      toby@opendarwin.org
8description      GNU File, Shell, and Text utilities
9long_description \
10    The GNU Core Utilities are the basic file, shell, and text manipulation \
11    utilities of the GNU operating system. These are the core utilities which \
12    are expected to exist on every operating system. Previously these \
13    utilities were offered as three individual sets of GNU utilities, \
14    fileutils, shellutils, and textutils. Those three have been combined into \
15    a single set of utilities called the coreutils.
16homepage         http://www.gnu.org/software/coreutils/
17platforms        darwin
18
19master_sites     gnu
20use_bzip2        yes
21checksums        sha1 782379daf200427058ca94a408566d600f779823
22
23configure.args   --program-prefix=g \
24                 --infodir=${prefix}/share/info \
25                 --mandir=${prefix}/share/man \
26                 --disable-nls
27
28post-destroot {
29        file delete -force ${destroot}${prefix}/share/info/dir
30        file delete -force ${destroot}${prefix}/lib/charset.alias
31}