1
0
Fork 0
frozenports/devel/libtool/SCHEMATIC

26 lines
751 B
Plaintext
Raw Permalink Normal View History

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