diff options
-rwxr-xr-x | build | 22 | ||||
-rw-r--r-- | changelog | 5 | ||||
-rw-r--r-- | control | 4 | ||||
-rw-r--r-- | copyright | 24 | ||||
-rw-r--r-- | format | 1 |
5 files changed, 56 insertions, 0 deletions
@@ -0,0 +1,22 @@ +#! /usr/bin/make -f + +PKGS = libncurses.5 libncurses.5-dev libncurses-doc \ + libncursesw.5 libncursesw.5-dev \ + libtinfo.5 libtinfo-dev terminfo \ + ncurses-bin + +$(PKGS): ncurses.buildstamp + +.SILENT: ncurses.buildstamp +ncurses.buildstamp: + cd src && \ + ./configure --prefix=/usr \ + --build=$${OH_BUILD_ARCH_GNU} --host=$${OH_HOST_ARCH_GNU} \ + --disable-maintainer-mode \ + --disable-python && \ + make && make DESTDIR=$$(pwd)/../dest install + oh-installfiles $(PKGS) + oh-installdocs libncurses.5 + oh-gencontrol $(PKGS) + oh-buildopk $(PKGS) + touch ncurses.buildstamp diff --git a/changelog b/changelog new file mode 100644 index 0000000..f2a24fb --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +ncurses (5.9-1) + + * Initial release. + + -- P. J. McDermott <pjm@nac.net> Fri, 27 Apr 2012 11:24:24 -0400 @@ -0,0 +1,4 @@ +Source: ncurses +Version: 5.9-1 +Maintainer: "P. J. McDermott" <pjm@nac.net> +Homepage: http://invisible-island.net/ncurses/ diff --git a/copyright b/copyright new file mode 100644 index 0000000..43a803b --- /dev/null +++ b/copyright @@ -0,0 +1,24 @@ +Upstream Source +=============== + +Location: <ftp://invisible-island.net/ncurses/> + +Copyright (c) 1998-2011 Free Software Foundation, Inc. + +These files may be reproduced, distributed, modified, and otherwise dealt in +under the terms of the X11 License. + +On this system, a copy of the X11 License may be found at +<file:///usr/share/common-licenses/X11>. + + +Distribution Packaging +====================== + +Copyright (C) 2012 Patrick "P. J." McDermott + +These files may be reproduced, distributed, modified, and otherwise dealt in +under the terms of the Expat License. + +On this system, a copy of the Expat License may be found at +<file:///usr/share/common-licenses/Expat>. @@ -0,0 +1 @@ +1.0 |