Package Details: toxic-git 0.7.1.r15.gf858714-1

Git Clone URL: https://aur.archlinux.org/toxic-git.git (read-only, click to copy)
Package Base: toxic-git
Description: CLI Frontend in ncurses for Tox
Upstream URL: https://tox.chat
Licenses: GPL3
Conflicts: toxic
Provides: toxic
Submitter: fhahn
Maintainer: farseerfc (quininer)
Last Packager: farseerfc
Votes: 48
Popularity: 0.000000
First Submitted: 2013-09-01 23:14 (UTC)
Last Updated: 2016-11-29 07:45 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4

Brottweiler commented on 2014-06-24 11:03 (UTC)

Probably have to update the PKGBUILD because upstream removed autotools.

aitjcize commented on 2014-04-09 13:50 (UTC)

@fhahn, it still wrong: change the package function to exactly package() { cd "${srcdir}/${_gitname}" make DESTDIR=${pkgdir} install } notice that I cd to the ${_gitname} not the build dir the make install command will take care the installation of the toxic and DHTnodes file.

fhahn commented on 2014-04-07 22:22 (UTC)

I've updated the PKGBUILD

aitjcize commented on 2014-04-04 08:42 (UTC)

@fhahn, change the package section to the following code package() { cd "${srcdir}/${_gitname}" make DESTDIR=${pkgdir} install }

fhahn commented on 2014-03-20 19:52 (UTC)

I've updated the PKGBUILD to use ´make install´, but this did not install the DHTnodes file in the correct place. I've installed the DHTnodes file manually for now, sorry for the long delay

Brottweiler commented on 2014-03-14 10:30 (UTC)

@aitjcize Do you mean to replace "install -Dm755 toxic "${pkgdir}/usr/bin/toxic"" with "make install"? The entire line? Until this gets changed in this PBGBUILD, I'd like to do it myself, and I am not fully sure since I am a bit of a noob at this. :)

aitjcize commented on 2014-03-10 18:22 (UTC)

Please use `make install` instead of manually install -D. The DHTnode file isn't installed due to this.

fhahn commented on 2013-08-23 13:33 (UTC)

tox-git does not build correctly at the moment, replace the package() section with: package() { cd $_gitname install -dm755 "$pkgdir/usr/include/tox/" install -m755 -t "$pkgdir/usr/include/tox/" core/*.h cd build/testing install -Dm755 nTox "$pkgdir/usr/bin/nTox" install -Dm755 DHT_test Messenger_test Lossless_UDP_testclient \ Lossless_UDP_testserver "$pkgdir/usr/bin/" install -Dm644 ../core/libtoxcore.a "$pkgdir/usr/lib/libtoxcore.a" install -Dm644 ../../COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" } to install the tox header files