25 lines
854 B
Plaintext
25 lines
854 B
Plaintext
|
#!/bin/sh
|
||
|
name="libtool"
|
||
|
short_desc="GNU Libtool is a generic library support script that hides the complexity of using shared libraries behind a consistent, portable interface."
|
||
|
desc="GNU Libtool is a generic library support script that hides the complexity of using shared libraries behind a consistent, portable interface."
|
||
|
category="devel"
|
||
|
version="2.4.7"
|
||
|
maintainer="oak@petrifiedoak.com"
|
||
|
www="https://www.gnu.org/software/libtool/"
|
||
|
master_site="https://ftp.gnu.org/gnu/libtool/"
|
||
|
source_name="$name-$version.tar.gz"
|
||
|
license_logic="single"
|
||
|
license=("GPLv2")
|
||
|
|
||
|
build_dependencies=("lang/gcc" "devel/gmake" "devel/m4")
|
||
|
run_dependencies=("devel/glibc")
|
||
|
|
||
|
build_process() {
|
||
|
cd $name-$version || exit 1
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-static || exit 1
|
||
|
make
|
||
|
make DESTDIR="$TAMANDUA_STAGE_DIR" install
|
||
|
}
|
||
|
|