forked from ports/compat-32
22 lines
440 B
Plaintext
22 lines
440 B
Plaintext
|
# Description: A generic library support script
|
||
|
# URL: http://www.gnu.org/software/libtool/
|
||
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
||
|
|
||
|
name=libtool-32
|
||
|
version=2.4.6
|
||
|
release=1
|
||
|
source=(https://ftpmirror.gnu.org/gnu/${name%-*}/${name%-*}-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd ${name%-*}-$version
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--libdir=/usr/lib32
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
rm -r $PKG/usr/{bin,include,share}
|
||
|
}
|