You are not logged in.
Im trying to make a package for sublib, but im have some problems. Currently my PKGBUILD looks like this:
# Contributor: Hugo Doria (hugodoria@)
pkgname=sublib
pkgver=0.3
pkgrel=1
pkgdesc="SubLib is a library for managing movie subtitles. It supports the most common subtitle formats and allows for subtitle editing, conversion and synchronization."
depends=('mono')
source=(http://dl.sourceforge.net/sourceforge/sublib/$pkgname-$pkgver.zip)
url="http://sublib.sourceforge.net/"
md5sums=('40dff28492846de9e11e86eaaa37acb1')
build() {
export MONO_SHARED_DIR=$startdir/src/.wab
mkdir -p "${MONO_SHARED_DIR}"
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/opt/gnome
make || return 1
make DESTDIR=$startdir/pkg install
rm -rf "${MONO_SHARED_DIR}"
}
Every time i run 'makepkg' i get this error:
Generating .FILELIST file...
tar: *: Cannot stat: No such file or directory
tar: Error exit delayed from previous errors
==> Compressing package...
tar: *: Cannot stat: No such file or directory
tar: Error exit delayed from previous errors
I tought that 'DESTDIR' would fix it, but it didnt. Any sugestions?
Yep! I know ... my english sucks
Offline
Probably it doesn't use DESTDIR, Instead, try prefix or PREFIX or it might be something else. Looking at the Makefile will tell you which one it use.
Offline
It means its not installing it where you want it, most likely in the rootfs. Try running it as regular user and see if you get permision errors. You could also try PREFIX=. See the makepkg manpage.
Offline