Dear friends,
I try to manage PKGBUILD of latest Pd-extended (svn & git) + latest Gem (git) for arch. For me it's running, what makes me happy because I am one of the new Archers.
It is here: https://aur.archlinux.org/packages.php?ID=22509
I have some questions: 1.) I need to do some fixes...corrected name of pdlua library in: externals/loaders/pdlua/src/Makefile ... not problem at all...
2.) I created an empty file in : externals/ekext/ninjacount-help.pd (0 bytes, it is needed for build, dont ask me why...) WHY IS THIS FILE MISSING ?
3.) It is going well on x_64 ? (What I really do is copy&paste some code from older packege for x64 optimatization, not tested)
4.) How to create mime type for gnome in PKGBUILD (to have nice pd icons on pd files) ?
5.) Maybe a made some mistakes in dependecies etc. ??? >> so if is here some Master to manage this better I wolud appreciate that.. cheers
You'll want to use the Pd-extended 0.43 branch rather than trunk. I don't know if that's what you mean by "latest".
http://puredata.info/docs/developer/GettingPdSource
.hc
On Oct 29, 2012, at 4:43 PM, Fero Kiraly wrote:
Dear friends,
I try to manage PKGBUILD of latest Pd-extended (svn & git) + latest Gem (git) for arch. For me it's running, what makes me happy because I am one of the new Archers.
It is here: https://aur.archlinux.org/packages.php?ID=22509
I have some questions: 1.) I need to do some fixes...corrected name of pdlua library in: externals/loaders/pdlua/src/Makefile ... not problem at all...
2.) I created an empty file in : externals/ekext/ninjacount-help.pd (0 bytes, it is needed for build, dont ask me why...) WHY IS THIS FILE MISSING ?
3.) It is going well on x_64 ? (What I really do is copy&paste some code from older packege for x64 optimatization, not tested)
4.) How to create mime type for gnome in PKGBUILD (to have nice pd icons on pd files) ?
5.) Maybe a made some mistakes in dependecies etc. ??? >> so if is here some Master to manage this better I wolud appreciate that.. cheers
-- Fero Kiraly www.cluster-ensemble.com
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Also, for the details like mime types and menus, check out the debian sources.
.hc
On Oct 29, 2012, at 4:43 PM, Fero Kiraly wrote:
Dear friends,
I try to manage PKGBUILD of latest Pd-extended (svn & git) + latest Gem (git) for arch. For me it's running, what makes me happy because I am one of the new Archers.
It is here: https://aur.archlinux.org/packages.php?ID=22509
I have some questions: 1.) I need to do some fixes...corrected name of pdlua library in: externals/loaders/pdlua/src/Makefile ... not problem at all...
2.) I created an empty file in : externals/ekext/ninjacount-help.pd (0 bytes, it is needed for build, dont ask me why...) WHY IS THIS FILE MISSING ?
3.) It is going well on x_64 ? (What I really do is copy&paste some code from older packege for x64 optimatization, not tested)
4.) How to create mime type for gnome in PKGBUILD (to have nice pd icons on pd files) ?
5.) Maybe a made some mistakes in dependecies etc. ??? >> so if is here some Master to manage this better I wolud appreciate that.. cheers
-- Fero Kiraly www.cluster-ensemble.com
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hi,
nice job, thank you.
Fero Kiraly wrote:
Dear friends,
I try to manage PKGBUILD of latest Pd-extended (svn & git) + latest Gem (git) for arch. For me it's running, what makes me happy because I am one of the new Archers.
What you can do is let the compiler optimize a bit for i686, since Arch does not run on i386 anyway :
--- pd-extended/packages/linux_make/Makefile.DIST 2012-03-12 06:50:51.000000000 +0100 +++ pd-extended/packages/linux_make/Makefile 2012-04-20 14:19:55.533178855 +0200 @@ -38,7 +38,7 @@ TARGET_PLATFORM := $(shell uname -m) ifeq ($(TARGET_PLATFORM),i686) # Generic x86 (tune for Pentium III, since that's more common these # days)
+# OPT_CFLAGS += -mtune=i686 -march=i386 endif ifeq ($(TARGET_PLATFORM),amd64) OPT_CFLAGS += -march=k8 -msse -msse2 -mfpmath=sse
But I really like the comment about Pentium III beeing common :).
Cheers,