core/libtool/Pkgfile
Tilman Sauerbeck e7c1f0993b [notify] libtool: updated to 2.2.2.
The new version of libltdl is not binary compatible to the old one, which
will result in error messages like this:

tilman@brimstone [~] > mpg123
mpg123: error while loading shared libraries: libltdl.so.3:
cannot open shared object file: No such file or directory
tilman@brimstone [~] >

Just rebuild the application in question (in this case, mpg123) to fix
the problem.
2008-04-09 16:58:31 +02:00

21 lines
559 B
Plaintext

# Description: A generic library support script
# URL: http://www.gnu.org/software/libtool/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=libtool
version=2.2.2
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \
libtool.1 libtoolize.1)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
mkdir -p $PKG/usr/man/man1
cp $SRC/libtool.1 $SRC/libtoolize.1 $PKG/usr/man/man1
rm -rf $PKG/usr/{info,share/info}
rm $PKG/usr/share/libtool/libltdl/README
}