chiark / gitweb /
Simplify check_metadata
[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/
13
14
15 Installing
16 ----------
17
18 The easiest way to install the fdroidserver tools is to use virtualenv and pip
19 (if you are Debian/Ubuntu/Mint/etc, you can first try installing using
20 `apt-get install fdroidserver`).  First, make sure you have virtualenv
21 installed, it should be included in your OS's Python distribution or via other
22 mechanisms like dnf/yum/pacman/emerge/Fink/MacPorts/Brew.  Then here's how to
23 install:
24
25     git clone https://gitlab.com/fdroid/fdroidserver.git
26     cd fdroidserver
27     virtualenv env/
28     . env/bin/activate
29     pip install -e .
30     python setup.py install