milis/talimatname/genel/a/afpfs-ng/talimat

39 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: Apple Dosyalama Protokol (AFP) kütüphanesi.
# URL: http://alexthepuffin.googlepages.com/
# Paketçi: yakar(aydin@komutan.org)
# Gerekler: fuse libgcrypt
# Grup: kütüphane
isim=afpfs-ng
surum=0.8.1
devir=1
kaynak=(http://downloads.sourceforge.net/sourceforge/$isim/$isim-$surum.tar.bz2
fix_afpfs-ng_includes.patch
01-gcrypt.patch
02-pointer.patch
10-fix-errno.patch
20-build-error-fixes.patch
21-header-path-fix.patch
30-include-fixes.patch
)
derle() {
cd "$SRC/$isim-$surum"
# apply patches
patch -Np1 -i "$SRC/fix_afpfs-ng_includes.patch"
patch -Np1 -i "$SRC/01-gcrypt.patch"
patch -Np1 -i "$SRC/02-pointer.patch"
patch -Np1 -i "$SRC/10-fix-errno.patch"
patch -Np1 -i "$SRC/20-build-error-fixes.patch"
patch -Np1 -i "$SRC/21-header-path-fix.patch"
patch -Np1 -i "$SRC/30-include-fixes.patch"
./configure --prefix=/usr
make
make DESTDIR="$PKG" install
# install headers
cd include
for header in afpfs-ng/*.h; do
install -Dm644 "$header" "$PKG/usr/include/$header"
done
}