ok. I get working pd-vanilla, pdx, pd-l2ork on one archlinux system.
All in /usr/lib/
https://aur.archlinux.org/packages/pd-vanilla/ - vanilla version (cannot rename to puredata, because on official repos is package with the same name) https://aur.archlinux.org/packages/pd-extended/ - binary is named 'pdextended' .... I think maybe it could be pdx ? https://aur.archlinux.org/packages/pd-l2ork/ https://aur.archlinux.org/packages/puredata-utils/ - pdsend, pdreceive
what is missing is 'cyclone', it should be installed separately, but I dont have energy for that.
install all with:
yaourt -S pd-vanilla pd-extended pd-l2ork puredata-utils
You can check for errors.
fk.
On Sat, Feb 9, 2013 at 7:31 AM, Fero Kiraly fero.kiraly@gmail.com wrote:
ok. I get working pd-vanilla, pdx, pd-l2ork on one archlinux system.
Fantastic that you've made these available. Thanks a lot.
Unfortunately, the build for pd-l2ork is failing for me at the disis_wiimote build stage. I can post the errors if you like but I suspect the build fails because disis_wiimote requires the pd-l2ork vesion of cwiid. For now I 'll try building without disis_wiimote, but it is something I would like to use so that's not an ideal solution. I was wondering how you have been able to successfully build pd-l2ork with this external included, since the PKGBUILD does not download the required cwiid tarball or attempt to build it so far as I can tell.
thanks again Michael
Fero Kiraly wrote:
ok. I get working pd-vanilla, pdx, pd-l2ork on one archlinux system.
For git, you can use the following construct in the PKGBUILD so you don't have to delete and clone again on successive builds:
#download pd-l2ork
msg "Looking for pd2lork on git ..."
cd $srcdir
if [ -d pd-l2ork ] ; then
cd pd-l2ork
git pull
cd ..
msg "The local files are updated."
else
git clone git://github.com/pd-l2ork/pd.git $pkgname
fi
msg "done"
#download Gem
cd $pkgname
msg "Looking for gem on git...."
if [ -d Gem ] ; then
cd Gem
git pull
cd ..
msg "The local files are updated."
else
git clone git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem Gem
fi
msg "done"