Package Details: wordbiz 1.8.7-2

Git Clone URL: https://aur.archlinux.org/wordbiz.git (read-only, click to copy)
Package Base: wordbiz
Description: Internet Scrabble Club client
Upstream URL: http://www.isc.ro
Licenses: unknown
Submitter: xrchz
Maintainer: colinkeenan
Last Packager: colinkeenan
Votes: 12
Popularity: 0.000000
First Submitted: 2009-03-14 22:18 (UTC)
Last Updated: 2015-06-09 00:58 (UTC)

Dependencies (1)

Required by (0)

Sources (3)

Latest Comments

« First ‹ Previous 1 2

biginoz commented on 2011-11-04 06:15 (UTC)

Yes it's a mistake for comment, but in PKGBUILD I wrote if [ ! -d .WordBiz ]

<deleted-account> commented on 2011-11-03 22:55 (UTC)

Shouldn't it be: if [ ! -d .WordBiz ] Otherwise directory won't be created

<deleted-account> commented on 2011-10-28 21:50 (UTC)

Shouldn't it be: [ ! -d .WordBiz ]; then otherwise .WordBiz is never created

biginoz commented on 2011-09-15 05:26 (UTC)

updated

xrchz commented on 2011-08-20 17:04 (UTC)

You can take this package over and submit the new config-saving PKGBUILD if you want; I disowned because I don't use it any more.

biginoz commented on 2011-08-19 08:24 (UTC)

To save the configuration, can you make PKGBUILD like that? (the Config file will be created in ~/.WordBiz) build() { mkdir -p $pkgdir/opt cp -r $srcdir/WordBiz $pkgdir/opt mkdir -p $pkgdir/usr/bin cat <<END > $pkgdir/usr/bin/wordbiz #!/bin/sh cd /home/$USER if [ -d .WordBiz ]; then mkdir .WordBiz fi cd .WordBiz java -jar /opt/WordBiz/wordbiz.jar END chmod +x $pkgdir/usr/bin/wordbiz chgrp games $pkgdir/opt/WordBiz || return 1 chmod g+w $pkgdir/opt/WordBiz }