Package Details: termbox-git r230.707f62e-1

Git Clone URL: https://aur.archlinux.org/termbox-git.git (read-only, click to copy)
Package Base: termbox-git
Description: termbox library (ncurses alternative)
Upstream URL: http://code.google.com/p/termbox/
Licenses: custom
Conflicts: termbox
Provides: termbox
Submitter: None
Maintainer: mlq
Last Packager: mlq
Votes: 8
Popularity: 0.000000
First Submitted: 2010-02-19 13:10 (UTC)
Last Updated: 2016-06-01 06:11 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

1 2 Next › Last »

lenormf commented on 2018-07-25 13:41 (UTC)

I modified the PKGBUILD file to install the python module as well, here is the patch:

--- /tmp/PKGBUILD.orig  2018-07-25 16:39:33.797704576 +0300
+++ /tmp/PKGBUILD       2018-07-25 16:39:19.484112733 +0300
@@ -7,7 +7,7 @@
 arch=('i686' 'x86_64')
 url="http://code.google.com/p/termbox/"
 license=('custom')
-makedepends=('git' 'python')
+makedepends=('git' 'python' 'cython')
 depends=('glibc')
 source=('termbox::git+https://github.com/nsf/termbox.git')
 sha1sums=('SKIP')
@@ -29,6 +29,7 @@
 package() {
   cd "$srcdir/$_gitname"
   ./waf install --destdir=$pkgdir
+  python setup.py install --prefix="$pkgdir/usr"
 }

 pkgver() {

HTH.

<deleted-account> commented on 2018-04-22 17:43 (UTC)

Upstream URL doesn't exits. Should it be https://github.com/nsf/termbox

gciruelos commented on 2016-06-01 01:02 (UTC) (edited on 2016-06-01 01:03 (UTC) by gciruelos)

+1 to linkmauve and grandchild.

linkmauve commented on 2016-05-22 18:36 (UTC)

Please add conflicts and provides for termbox, so programs depending on it can just use 'termbox' in their depends.

grandchild commented on 2016-03-02 14:51 (UTC) (edited on 2016-03-02 15:36 (UTC) by grandchild)

Please fix the pkgver(), as requested several times. There are suggestions in the comments as well as on https://wiki.archlinux.org/index.php/VCS_package_guidelines#The_pkgver.28.29_function Thanks! :)

demizer commented on 2015-07-11 23:31 (UTC)

The PKGBUILD is missing "python" in makedepends. This package does not build in a clean chroot environment.

<deleted-account> commented on 2015-05-24 10:53 (UTC)

fixed pkgbuild w/o waf dependency: https://gist.githubusercontent.com/MehLON/e4d5fd6ce3383ebfa36f/raw/PKGBUILD

<deleted-account> commented on 2015-05-24 10:53 (UTC)

fixed pkgbuild: https://gist.githubusercontent.com/MehLON/e4d5fd6ce3383ebfa36f/raw/PKGBUILD

stevenhoneyman commented on 2014-08-08 19:44 (UTC)

oops forgot 1 more: please add "staticlibs" option - as this library is popular as a lightweight alternative for ncurses, people might/will want to link statically against it for small/embedded systems

stevenhoneyman commented on 2014-08-08 19:42 (UTC)

waf shouldn't be a dependency -- it's already included in the git repo (you run ./waf ___ in your pkgbuild) the main issue is the pkgver() function is broken, and always thinks there is an update