Browse Source

New fixed PKGBUILD

Sunit Kumar Nandi 9 years ago
parent
commit
8aa4c5d857
6 changed files with 190 additions and 0 deletions
  1. 47 0
      PKGBUILD
  2. 59 0
      README.md
  3. 2 0
      utserver
  4. 32 0
      utserver.conf
  5. 38 0
      utserver.install
  6. 12 0
      utserver.service

+ 47 - 0
PKGBUILD

@@ -0,0 +1,47 @@
+# Maintainer: Sunit Kumar Nandi <sunitnandi834 at gmail.com>
+# Forked from: Frikilinux <frikilinux at gmail.com> and Carl Reinke <mindless2112 gmail com>
+
+pkgname=utserver
+pkgver=30470
+pkgrel=3
+pkgdesc='uTorrent server, BitTorrent client with web UI'
+url='http://www.utorrent.com/downloads/linux'
+license=('custom')
+install="$pkgname.install"
+source=("utserver-${pkgver}.tar.gz::http://download-new.utorrent.com/endpoint/utserver/os/linux-x64-ubuntu-13-04/track/beta/"
+        'utserver' 'utserver.conf' 'utserver.service')
+sha256sums=('6e4f836d5ca6bc5ec48632b4e425a936d1a09ab38a6ed2ab8d7016dd8e2b81bf'
+            '71fd1091e3ffa59ee7ed47d37b634c572080ef8db517cda29f0f4b4c0324e23c'
+            'bc4fc09f99f1f234ee32bf7b12cfc13ff3c7fed062b2d0ea65acd5d70f4dbde1'
+            '223377deb4cc913e9a2a7e08951319a004cc27158dee39fac03870e66ae2d1eb')
+
+arch=('i686' 'x86_64')
+depends=('bash' 'openssl' 'zlib')
+makedepends=('unzip')
+backup=('etc/utserver.conf')
+conflicts=('utorrent-server')
+
+if [[ "$CARCH" == i686 ]]
+then
+    source[0]="utserver-${pkgver}.tar.gz::http://download-new.utorrent.com/endpoint/utserver/os/linux-i386-ubuntu-13-04/track/beta/"
+    sha256sums[0]='ec8bbe21eb3fab14f725c0d3ea648b61d035bf8a2871bb006abd3405f99ed067'
+#    depends=('bash' 'openssl098' 'zlib')
+fi
+
+package()
+{
+    install -dm755 ${pkgdir}/srv/utserver/{downloads,settings,torrents}
+    install -dm755 ${pkgdir}/usr/share/utserver/webui
+    install -dm755 ${pkgdir}/usr/share/doc/utserver
+    
+    cd ${srcdir}/utorrent-server-alpha-v3_3
+    install -Dm755 utserver ${pkgdir}/usr/share/utserver/utserver
+    install -m644 docs/* ${pkgdir}/usr/share/doc/utserver
+    unzip webui.zip -d ${pkgdir}/usr/share/utserver/webui
+    install -Dm644 docs/license.txt ${pkgdir}/usr/share/licenses/utserver/LICENSE
+    
+    cd $srcdir
+    install -Dm755 utserver ${pkgdir}/usr/bin/utserver
+    install -Dm644 utserver.conf ${pkgdir}/etc/utserver.conf
+    install -Dm644 utserver.service ${pkgdir}/usr/lib/systemd/system/utserver.service
+}

+ 59 - 0
README.md

@@ -0,0 +1,59 @@
+# utserver
+uTorrent server for Archlinux
+
+## What is it?
+uTorrent server is a headless, single user torrent client created by BitTorrent Inc. The term "server" specifies that the software does not come with a desktop GUI. Instead one should use the web interface to 
+add and manage torrents. This makes it ideal use cases such as a headless PC, server or a seedbox. uTorrent server also has the entire feature set of uTorrent on Windows and Mac and usually works better with 
+NATs and firewalls as compared to other BitTorrent clients, and in many cases, faster too.
+
+This is a build script to set up uTorrent server from http://www.utorrent.com/downloads/linux on a system running Archlinux.
+
+## How to install?
+Type the following in sequence in a terminal:
+
+```
+git clone https://github.com/sunitknandi/utserver.git
+cd utserver
+makepkg -si
+```
+
+Done!
+
+## How to use?
+Start/stop/restart/check the daemon with:
+`sudo systemctl (start|stop|restart|status) utserver`
+
+Enable/disable the daemon to start at boot with:
+`sudo systemctl (enable|disable) utserver`
+
+Read the logs with:
+`sudo tail -f /srv/utserver/utserver.log`
+
+If you are running uTorrent for the first time, point your browser to http://localhost:8080/gui and login with username "admin" and blank password. Once logged in you can add, edit and remove torrents from 
+the web interface. You can change uTorrent settings as well as the admin credentials by clicking the gear icon. You can also change the preferences by editing `/etc/utserver.conf`
+
+Please keep mind that once any setting is changed in the web interface, it will override any changes made in `/etc/utserver.conf`
+
+If you ever run into a problem you can delete the directory `/srv/utserver/settings` to reset uTorrent back to its default settings or that defined in `/etc/utserver.conf`; however it is a hard reset and you 
+will lose all your information and added torrents.
+
+For more documentation, please refer to the uTorrent server manual inside the `/usr/share/doc/utserver` folder once installed.
+
+## Why this GitHub repo?
+1. The original PKGBUILD on the AUR has has certain errors/issues which are pending a fix. I have tried to fix most of the bugs.
+2. I want to maintain my own until the transition from AUR 2 to AUR 4 is over.
+
+## Credits
+Credits for the initial PKGBUILD go to Frikilinux <frikilinux@gmail.com> and Carl Reinke <mindless2112@gmail.com>.
+I have modified the files to make it up-to-date and as bug-free as possible.
+
+## License
+uTorrent server is non-free software and is copyrighted by BitTorrent Inc.
+My PKGBUILD is licensed under the GPLv2.
+
+## Contributing
+Feel free to fork it, edit it and send me a pull request. It can greatly help in timely updates.
+
+## Questions and suggestions
+Feel free to shoot me a mail at sunitnandi834 (at) gmail (dot) com and I'll get back to you. :smile:
+May the source be with you. :smile:

+ 2 - 0
utserver

@@ -0,0 +1,2 @@
+#!/bin/sh
+/usr/share/utserver/utserver $*

+ 32 - 0
utserver.conf

@@ -0,0 +1,32 @@
+##
+## see /usr/share/doc/utserver/uTorrent_Server.txt
+##
+
+#bind_ip: 
+#ut_webui_port: 8080
+#token_auth_enable: true
+dir_active: downloads
+dir_completed: downloads
+#dir_download: 
+dir_torrent_files: torrents
+dir_temp_files: /tmp/utserver
+#dir_autoload: 
+#dir_autoload_delete: 
+#dir_request: 
+#upnp: true
+#natpmp: true
+#lsd: true
+#dht: true
+#pex: true
+#rate_limit_local_peers: false
+dir_root: /srv/utserver
+#preferred_interface: 
+#admin_name: admin
+#admin_password: 
+logmask: 42090496
+ut_webui_dir: /usr/share/utserver
+#finish_cmd: 
+#state_cmd: 
+#uconnect_enable: false
+#uconnect_username: 
+#uconnect_password: 

+ 38 - 0
utserver.install

@@ -0,0 +1,38 @@
+post_install()
+{
+    getent group utserver &>/dev/null || groupadd --system utserver
+    if getent passwd utserver &>/dev/null
+    then
+        usermod -c 'utorrent-server' -d /srv/utserver -s /bin/false utserver &>/dev/null
+    else
+        useradd -c 'utorrent-server' --system -g utserver -d /srv/utserver -s /bin/false utserver &>/dev/null
+    fi
+    passwd -l utserver &>/dev/null
+
+    chown utserver:utserver /srv/utserver/{.,downloads,settings,torrents}
+    
+cat << _EOF
+>>> The default download directory is /srv/utserver/downloads/
+    The default web UI is http://admin:@localhost:8080/gui/
+    If utserver has CPU-usage issues, try enabling 'net.low_cpu' in the
+    Advanced Options.
+_EOF
+    true
+}
+
+post_upgrade()
+{
+    post_install $*
+}
+
+pre_remove()
+{
+    systemctl stop utserver &>/dev/null
+}
+
+post_remove()
+{
+    getent passwd utserver &>/dev/null && userdel utserver
+    getent group utserver &>/dev/null && groupdel utserver
+    true
+}

+ 12 - 0
utserver.service

@@ -0,0 +1,12 @@
+[Unit]
+Description=uTorrent Server Daemon
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/utserver -configfile /etc/utserver.conf -settingspath /srv/utserver/settings/ -pidfile /srv/utserver/utserver.pid -logfile /srv/utserver/utserver.log -daemon
+User=utserver
+PIDFile=/srv/utserver/utserver.pid
+
+[Install]
+WantedBy=multi-user.target