You are not logged in.
This seems to be main dependency for gmailfs and it also looks like very useful for other usage.
#
# Contributor: Lukas Konarovsky, http://daeltar.org, <lukas@daeltar.org>
#
pkgname=fuse
pkgver=1.3
pkgrel=1
pkgdesc="Filesystem in Userspace (FUSE)"
url="http://sourceforge.net/projects/avf"
source=(http://belnet.dl.sourceforge.net/sourceforge/avf/fuse-1.3.tar.gz)
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}
# vim: ts=2 sw=2 et ft=sh
Thanks For All the Fish
Offline
some tipps for your work:
- if you post PKGBUILD's in the forum, use [code] instead of
, so that the code is formated in monospace chars (easier to read)
- you can use make without the absolute path, as it is (should be always) in the PATH ("make" instead of "/usr/bin/make" is ok)
- no depends=() ? (i don't know this software, but it maybe needs other software to link or use while running)
hope this helps
The impossible missions are the only ones which succeed.
Offline
Thank you for your tips, I repair all what can be repaired but I think this piece of software needs only kernel sources in build time so shall I add makedepends array with only one item kernel?
Thanks For All the Fish
Offline
Thank you for your tips, I repair all what can be repaired but I think this piece of software needs only kernel sources in build time so shall I add makedepends array with only one item kernel?
if it is only the kernel, then you don't need to set it as a dependency (if the pkg works on all kernel) ... a makedepends is usefull, but i'm not 100% sure, if it is the best way (what kernel do you want to be makedepends? kernel26 kernel26-scsi or even kernel24 ? ... i don't know)
The impossible missions are the only ones which succeed.
Offline