chiark / gitweb /
README: ppa only works for Ubuntu based systems
[fdroidserver.git] / README
1 F-Droid is an installable catalogue of FOSS (Free and Open Source Software)
2 applications for the Android platform. The client makes it easy to browse,
3 install, and keep track of updates on your device.
4
5 The F-Droid server tools provide various scripts and tools that are used to
6 maintain the main F-Droid application repository. You can use these same tools
7 to create your own additional or alternative repository for publishing, or to
8 assist in creating, testing and submitting metadata to the main repository.
9
10 For documentation, please see the docs directory.
11
12 Alternatively, visit [https://f-droid.org/manual/](https://f-droid.org/manual/)
13
14
15 Installing
16 ----------
17
18 The easiest way to install the `fdroidserver` tools is on Ubuntu, Mint or other
19 Ubuntu based distributions, you can install using:
20
21     sudo add-apt-repository ppa:guardianproject/ppa
22     sudo apt-get update
23     sudo apt-get install fdroidserver
24
25 But you can also use `virtualenv` and `pip` python tools that also work on other
26 distributions.
27
28 First, make sure you have installed the python header files, virtualenv and pip.
29 They should be included in your OS's default package manager or you can install
30 them via other mechanisms like Brew/dnf/pacman/emerge/Fink/MacPorts.
31
32 For Debian based distributions:
33
34     apt-get install python-dev python-pip python-virtualenv
35
36 Then here's how to install:
37
38     git clone https://gitlab.com/fdroid/fdroidserver.git
39     cd fdroidserver
40     virtualenv env/
41     source env/bin/activate
42     pip install -e .
43     python2 setup.py install