mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/libetpan: Updated for version 0.52
This commit is contained in:
parent
1bb05cbe59
commit
bfaf3362c8
4 changed files with 26 additions and 16 deletions
|
@ -4,4 +4,3 @@ The purpose of this mail library is to provide a portable, efficient
|
||||||
middleware for different kinds of mail access. When using the
|
middleware for different kinds of mail access. When using the
|
||||||
drivers interface, the interface is the same for all kinds of mail
|
drivers interface, the interface is the same for all kinds of mail
|
||||||
access, remote and local mailboxes.
|
access, remote and local mailboxes.
|
||||||
|
|
||||||
|
|
|
@ -2,13 +2,14 @@
|
||||||
|
|
||||||
# Slackware build script for libetpan
|
# Slackware build script for libetpan
|
||||||
# Written by Erik Hanson erik@slackbuilds.org
|
# Written by Erik Hanson erik@slackbuilds.org
|
||||||
|
# Updated to 0.52 by Timothy Pollard <grainman.timp@gmail.com>
|
||||||
|
|
||||||
PRGNAM=libetpan
|
PRGNAM=libetpan
|
||||||
VERSION=0.49
|
VERSION=0.52
|
||||||
ARCH=${ARCH:-i486}
|
ARCH=${ARCH:-i486}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
CWD=`pwd`
|
CWD=$(pwd)
|
||||||
TMP=${TMP:-/tmp/SBo}
|
TMP=${TMP:-/tmp/SBo}
|
||||||
PKG=$TMP/package-$PRGNAM
|
PKG=$TMP/package-$PRGNAM
|
||||||
OUTPUT=${OUTPUT:-/tmp}
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
@ -38,8 +39,10 @@ CFLAGS="$SLKCFLAGS" \
|
||||||
make || exit 1
|
make || exit 1
|
||||||
make install DESTDIR=$PKG || exit 1
|
make install DESTDIR=$PKG || exit 1
|
||||||
|
|
||||||
find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
( cd $PKG
|
||||||
find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||||
|
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||||
|
)
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cp -a COPYRIGHT ChangeLog INSTALL NEWS TODO doc/ $PKG/usr/doc/$PRGNAM-$VERSION
|
cp -a COPYRIGHT ChangeLog INSTALL NEWS TODO doc/ $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="libetpan"
|
PRGNAM="libetpan"
|
||||||
VERSION="0.49"
|
VERSION="0.52"
|
||||||
HOMEPAGE="http://www.etpan.org/"
|
HOMEPAGE="http://www.etpan.org/"
|
||||||
DOWNLOAD="http://dl.sourceforge.net/libetpan/libetpan-0.49.tar.gz"
|
DOWNLOAD="http://downloads.sourceforge.net/libetpan/libetpan-0.52.tar.gz"
|
||||||
MD5SUM="f6c973ea1aa53d947f034e093960da10"
|
MD5SUM="119eb4ac27fb75540ca74d8997f7fc7f"
|
||||||
MAINTAINER="Erik Hanson"
|
MAINTAINER="Timothy Pollard"
|
||||||
EMAIL="erik@slackbuilds.org"
|
EMAIL="grainman.timp@gmail.com"
|
||||||
APPROVED="elohim,robw810"
|
APPROVED="rworkman"
|
||||||
|
|
|
@ -1,9 +1,17 @@
|
||||||
libetpan: libEtPan - A mail purpose library.
|
# HOW TO EDIT THIS FILE:
|
||||||
|
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||||
|
# up the first '|' above the ':' following the base package name, and the '|'
|
||||||
|
# on the right side marks the last column you can put a character in. You must
|
||||||
|
# make exactly 11 lines for the formatting to be correct. It's also
|
||||||
|
# customary to leave one space after the ':'.
|
||||||
|
|
||||||
|
|-----handy-ruler------------------------------------------------------|
|
||||||
|
libetpan: libEtPan (A mail purpose library)
|
||||||
libetpan:
|
libetpan:
|
||||||
libetpan: The purpose of this mail library is to provide a portable, efficient
|
libetpan: The purpose of this mail library is to provide a portable,
|
||||||
libetpan: middleware for different kinds of mail access. When using the
|
libetpan: and efficient middleware for different kinds of mail access. When
|
||||||
libetpan: drivers interface, the interface is the same for all kinds of mail
|
libetpan: using the drivers interface, the interface is the same for all
|
||||||
libetpan: access, remote and local mailboxes.
|
libetpan: kinds of mail access, both remote and local mailboxes.
|
||||||
libetpan:
|
libetpan:
|
||||||
libetpan: http://www.etpan.org/
|
libetpan: http://www.etpan.org/
|
||||||
libetpan:
|
libetpan:
|
||||||
|
|
Loading…
Reference in a new issue