Add ncurses optional package

This commit is contained in:
Ingo Weinhold
2013-04-25 03:39:09 +02:00
parent ad1d8a9d01
commit db88e4417b
+17
View File
@@ -52,6 +52,7 @@
# Man - standard commands to read man pages
# Mercurial - the distributed version control system
# Nano - the command line text editor
# NCurses - the new curses library
# Neon - support libraries used for example by SVN
# NetFS - the native networked file system components
# NetSurf - the web browser
@@ -973,6 +974,22 @@ if [ IsOptionalHaikuImagePackageAdded Nano ] {
}
# NCurses
if [ IsOptionalHaikuImagePackageAdded Nano ] {
if $(TARGET_ARCH) != x86 {
Echo "No optional package NCurses available for $(TARGET_ARCH)" ;
} else {
if $(HAIKU_GCC_VERSION[1]) >= 4 {
Echo "No optional package NCurses available for gcc 4" ;
} else {
InstallOptionalHaikuImagePackage
$(hpkgBaseURL)/ncurses-5.9-3-x86_gcc2.hpkg
: common packages ;
}
}
}
# Neon
if [ IsOptionalHaikuImagePackageAdded Neon ] {
if $(TARGET_ARCH) != x86 {