Blame env-builder-data/build/script/packet/x264-master.sh

3b09af
DEPS_NATIVE="yasm-1.3.0"
ce0d6b
ce0d6b
PK_DIRNAME="x264"
ce0d6b
PK_URL="http://git.videolan.org/git/$PK_DIRNAME.git"
f26837
PK_GIT_CHECKOUT="d32d7bf1c6923a42cbd5ac2fd540ecbb009ba681"
ce0d6b
ce0d6b
source $INCLUDE_SCRIPT_DIR/inc-pkall-git.sh
137887
137887
pkbuild() {
137887
    cd "$BUILD_PACKET_DIR/$PK_DIRNAME" || return 1
137887
    
137887
    if ! check_packet_function $NAME build.cunfigure; then
137887
        AS=yasm ./configure \
137887
         $PK_CONFIGURE_OPTIONS_DEFAULT \
137887
         $PK_CONFIGURE_OPTIONS \
137887
         || return 1
137887
        set_done $NAME build.cunfigure
137887
    fi
137887
    
137887
    if ! AS=yasm make -j${THREADS}; then
137887
        return 1
137887
    fi
137887
}