summaryrefslogtreecommitdiffstats
path: root/ncurses/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'ncurses/Pkgfile')
-rw-r--r--ncurses/Pkgfile28
1 files changed, 28 insertions, 0 deletions
diff --git a/ncurses/Pkgfile b/ncurses/Pkgfile
new file mode 100644
index 0000000..ffc2a4d
--- /dev/null
+++ b/ncurses/Pkgfile
@@ -0,0 +1,28 @@
+description="A System V Release 4.0 curses emulation library"
+packager=""
+maintainer="CRUX System Team, core-ports at crux dot nu"
+url="http://www.gnu.org/software/ncurses/ncurses.html"
+depends=()
+
+name=ncurses
+version=5.7
+release=1
+source=(http://ftp.gnu.org/gnu/ncurses/ncurses-5.7.tar.gz)
+build ()
+{
+ cd $name-$version;
+ local OPTIONS="--with-install-prefix=$PKG --prefix=/usr --with-normal --with-shared --without-debug --without-ada
+";
+ ./configure $OPTIONS;
+ make;
+ make install;
+ make distclean;
+ ./configure $OPTIONS --enable-widec;
+ make;
+ make install;
+ mkdir $PKG/lib;
+ for i in w '';
+ do
+ mv $PKG/usr/lib/libncurses$i.so.* $PKG/lib && ln -sf libncurses$i.so $PKG/usr/lib/libcurses$i.so && ln -sf ../../lib/libncurses$i.so.5 $PKG/usr/lib/libncurses$i.so && ln -sf ../../lib/libncurses$i.so.5 $PKG/usr/lib/libncurses$i.so.5;
+ done
+}