ports

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

libid3tag.mk (497B)


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