Új hozzászólás Aktív témák

  • kolor

    csendes tag

    válasz kolor #4915 üzenetére

    Hátha valakinek hasznos lesz.
    Én ezt a telepítési folyamatot csináltam végig.

    https://github.com/transmission/transmission/wiki/Building-Transmission

    # 1. Dependencies
    apt-get install ca-certificates libcurl4-openssl-dev libssl-dev pkg-config build-essential checkinstall

    # 2. libevent
    # https://github.com/libevent/libevent/tree/release-2.0.18-stable
    # https://github.com/libevent/libevent/archive/release-2.0.18-stable.tar.gz
    # (If you got libevent from the git repository, you will
    # first need to run the included "autogen.sh" script in order to
    # generate the configure script.)

    cd /var/tmp
    wget https://github.com/libevent/libevent/archive/release-2.0.18-stable.tar.gz
    tar xzf release-2.0.18-stable.tar.gz
    cd libevent-2.0.18-stable
    ./autogen.sh
    CFLAGS="-Os -march=native" ./configure && make

    checkinstall
    # change dpkg version to 2.0.18,
    # otherwise will get
    # error in Version string 'stable-1': version number does not start with digit
    # módosítsd a verziót 2.0.18 verzióra, különben a fenti hibával leáll.

    # 3. Transmission
    cd /var/tmp
    wget https://github.com/transmission/transmission-releases/raw/master/transmission-2.51.tar.bz2
    tar xjf transmission-2.51.tar.bz2
    cd transmission-2.51
    CFLAGS="-Os -march=native" ./configure && make && checkinstall

    http://omvipcime:9091

Új hozzászólás Aktív témák