32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
|
# Description: University of Washington's IMAP/mail c-client library
|
|||
|
# URL: http://www.washington.edu/imap/
|
|||
|
# Maintainer: J<>rgen Daubert, juergen dot daubert at t-online dot de
|
|||
|
# Depends on: openssl
|
|||
|
|
|||
|
name=libc-client
|
|||
|
version=2004g
|
|||
|
release=1
|
|||
|
source=(ftp://ftp.cac.washington.edu/imap/imap-$version.tar.Z)
|
|||
|
|
|||
|
build () {
|
|||
|
cd imap-$version
|
|||
|
echo y | make slx EXTRACFLAGS="$CFLAGS" \
|
|||
|
SSLTYPE=unix \
|
|||
|
SSLDIR=/usr \
|
|||
|
SSLCERTS=/etc/ssl/certs \
|
|||
|
IP=6
|
|||
|
cd c-client
|
|||
|
gcc -Wl,-soname,$name.so.1 -shared -fPIC -o $name.so.1.0.0 *.o
|
|||
|
|
|||
|
install -d $PKG/usr/{lib,include/c-client}
|
|||
|
|
|||
|
install -m 644 c-client.a $PKG/usr/lib/$name.a
|
|||
|
install -m 755 $name.so.1.0.0 $PKG/usr/lib
|
|||
|
ln -s $name.so.1.0.0 $PKG/usr/lib/$name.so.1
|
|||
|
ln -s $name.so.1.0.0 $PKG/usr/lib/$name.so
|
|||
|
|
|||
|
install -m 644 *.h $PKG/usr/include/c-client
|
|||
|
install -m 644 linkage.c $PKG/usr/include/c-client
|
|||
|
rm $PKG/usr/include/c-client/os_*.h
|
|||
|
}
|