ports

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

xorglibxv.mk (643B)


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