You've already forked macports-base
mirror of
https://github.com/macports/macports-base.git
synced 2026-07-12 18:18:43 -07:00
12 lines
468 B
Bash
Executable File
12 lines
468 B
Bash
Executable File
#!/bin/sh
|
|
|
|
script_dir=$(dirname "$0")
|
|
|
|
# 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" "$script_dir"/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
|