You are not logged in.
The AUR package mpe2 tries to install binaries into /usr/sbin which causes installation to fail. If I tweak the PKGBUILD to move those binaries to /usr/bin I get errors later in the build process because something expected there to be files in ${pkgdir}/usr/sbin. I don't really know what I'm doing here.
Could someone take a look at the BUILDPKG for mpe2 and tell me how to patch it?
Last edited by khouli (2015-03-11 22:38:30)
Offline
Always useful to know how you tweaked it and how it failed exactly.
I think you could put
ln -s bin "$pkgdir/usr/sbin"at the start of the package() function and then
rm "$pkgdir/usr/sbin"at the end.
Offline
You can try to set --sbindir=/usr/bin in the configure line.
Last edited by progandy (2015-03-11 22:32:06)
| alias CUTF='LANG=en_XX.UTF-8@POSIX ' | alias ENGLISH='LANG=C.UTF-8 ' |
Offline
Shuffling files inside the package() function was confused autotools.
--sbindir=/usr/bin worked.
Offline