You've already forked macports-base
mirror of
https://github.com/macports/macports-base.git
synced 2026-07-12 18:18:43 -07:00
70d6bdb606
provide a shell script that demonstrates how to run configure for a standard build git-svn-id: https://svn.macports.org/repository/macports/trunk/base@117520 d073be05-634f-4543-b044-5fe20cf6d1d6
10 lines
423 B
Bash
Executable File
10 lines
423 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This is how we run configure when building binary packages (more or less,
|
|
# minus architecture selection). If you don't want a custom build, this
|
|
# is probably how you should run it too.
|
|
env PATH=/usr/bin:/bin:/usr/sbin:/sbin CFLAGS="-pipe -Os" ./configure --enable-readline
|
|
|
|
# If you want to use a different prefix, add this to the above:
|
|
# --prefix=/some/path --with-applications-dir=/some/path/Applications
|