ports

morpheus ports
git clone git://git.2f30.org/ports
Log | Files | Refs | LICENSE

libtiff.mk (507B)


      1 TARG = libtiff
      2 # TODO: enable more stuff?
      3 # DEPS = libjpeg zlib xz
      4 
      5 <$mkbuild/mk.common-noinst
      6 
      7 libtiff:QV:
      8 	CC="$CC" ./configure \
      9 		--prefix="$PREFIX" \
     10 		--mandir="$ROOT/share/man" \
     11 		--disable-shared \
     12 		--disable-zlib \
     13 		--disable-mdi \
     14 		--disable-jpeg \
     15 		--enable-static
     16 	make -j$nprocs
     17 	# install lib for use as a dependency.
     18 	make -j$nprocs install DESTDIR=`pwd`/lib
     19 	# remove .la files for now ?
     20 	find `pwd`/lib -iname "*.la" -exec rm {} \;
     21 
     22 install:QV:
     23 	make -j$nprocs install DESTDIR="$ROOT"