You are not logged in.
Pages: 1
configure options now must be typed into PKGBUILD.
How about ability to change "optional" options with the dialog tool like in FreeBSD ports?
Last example - I try to build nmap on server without X and it fails while make with gtk not found error.
So I should run configure --help, find proper options to exclude GUI, type it into PKGBUILD and try to build again.
May be, it will enough to put 2-3 lines with configure...
for example
configure --prefix=/usr
# configure --prefix=/usr --without-nmapfe
# configure ....... some other options
Or may be some other way exists...
Offline
One of posible ways:
options_check=(--without-nmapfe --without-x)
options_select=(--with-gui=gtk --with-gui=qt --with-gui=xaw --with-gui=motif)
...
build{
...
./configure --prefix=/usr $selected_options
...
}
Offline
Pages: 1