You are not logged in.
Pages: 1
Hey...trying to make my first pkgbuild. If I try to install it from the source, just normally on my comp, it runs fine. But, of course, in the pkgbuild, instead of 'make install' I'm running 'make DESTDIR="$startdir/pkg" install || return 1'
This caused me to get an error with pkg-config, which was fixed with adding 'export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$startdir/pkg/usr/lib/pkgconfig' in the pkgbuild.
Now I'm getting an error '/usr/bin/ld: cannot find -lgstbuzztard' and I assume it's similar to what I found before, where I have to have something search $startdir instead of my normal system paths. Any ideas?
[home page] -- [code / configs]
"Once you go Arch, you must remain there for life or else Allan will track you down and break you."
-- Bregol
Offline
What package are you trying to build?
Offline
buzztard
[home page] -- [code / configs]
"Once you go Arch, you must remain there for life or else Allan will track you down and break you."
-- Bregol
Offline
It looks like the linker can't find the gst-buzztard files it needs. Where did you install this? If it was in a non-standard place you may need add this information to /etc/ld.conf and re-generate the config cache (run 'ldconfig' as root)
Also, can you post at least the build function from your PKGBUILD and the pkg-config error
Offline
ok, well some help on IRC said I should split the sources up, so I'll go ahead and do that
[home page] -- [code / configs]
"Once you go Arch, you must remain there for life or else Allan will track you down and break you."
-- Bregol
Offline
Pages: 1