18 lines
290 B
Plaintext
Executable File
18 lines
290 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
SOURCE_URL="ftp://download.osgeo.org/libtiff/$P-$V.tar.gz"
|
|
|
|
pbuild::configure() {
|
|
"${SRC_DIR}"/configure \
|
|
--prefix="${PREFIX}" \
|
|
--with-pic=yes \
|
|
--disable-shared \
|
|
--disable-jpeg \
|
|
|| exit 1
|
|
}
|
|
|
|
CC=gcc
|
|
|
|
pbuild::add_to_group 'Libraries'
|
|
pbuild::make_all
|