Update README

* Move binary repo section to the top
* Mention Docker image
* Remove Gogs/Gitea (Gitea is now in official repos)
This commit is contained in:
Martchus 2018-11-10 12:02:36 +01:00
parent ec5078bad7
commit 6a5d97747f
1 changed files with 25 additions and 7 deletions

View File

@ -4,13 +4,36 @@ Contains PKGBUILD files for creating Arch Linux packages:
* Packages for my own applications and libraries such as [Syncthing Tray](https://github.com/Martchus/syncthingtray), * Packages for my own applications and libraries such as [Syncthing Tray](https://github.com/Martchus/syncthingtray),
[Tag Editor](https://github.com/Martchus/tageditor), [Password Manager](https://github.com/Martchus/passwordmanager), ... [Tag Editor](https://github.com/Martchus/tageditor), [Password Manager](https://github.com/Martchus/passwordmanager), ...
* Packages [I maintain in the AUR](https://aur.archlinux.org/packages/?O=0&SeB=M&K=Martchus&outdated=&SB=v&SO=d&PP=50&do_Search=Go): * Packages [I maintain in the AUR](https://aur.archlinux.org/packages/?O=0&SeB=M&K=Martchus&outdated=&SB=v&SO=d&PP=50&do_Search=Go):
* misc packages, eg. Gogs/Gitea, Subtitle Composer, openelec-dvb-firmware * misc packages, eg. Subtitle Composer, openelec-dvb-firmware
* mingw-w64 packages which allow to build for Windows under Arch Linux, eg. freetype2 and Qt 5 * mingw-w64 packages which allow to build for Windows under Arch Linux, eg. freetype2 and Qt 5
* apple-darwin packages which allow to build for MaxOS X under Arch Linux, eg. osxcross and Qt 5 * apple-darwin packages which allow to build for MaxOS X under Arch Linux, eg. osxcross and Qt 5 (still experimental)
* Other packages imported from the AUR to build with slight modifications * Other packages imported from the AUR to build with slight modifications
So if you like to improve one of my AUR packages, just create a PR here. So if you like to improve one of my AUR packages, just create a PR here.
## Binary repository
I also provide a [binary repository](https://martchus.no-ip.biz/repo/arch/ownstuff/os) containing the packages found
in this repository and a lot of packages found in the AUR:
```
[ownstuff-testing]
SigLevel = Optional TrustAll
Server = https://martchus.no-ip.biz/repo/arch/$repo/os/$arch
[ownstuff]
SigLevel = Optional TrustAll
Server = https://martchus.no-ip.biz/repo/arch/$repo/os/$arch
```
The testing repository is required if you have also enabled the official testing repository. (Packages contained by ownstuff-testing
are linked against packages found in the official testing repository.)
Note that I can not assure that required rebuilds always happen fast enough (since the offical developers obviously don't wait for
me before releasing their packages from staging).
## Docker image
Checkout the repository [docker-mingw-qt5](https://github.com/mdimura/docker-mingw-qt5).
## Structure ## Structure
Each package is in its own subdirectoy: Each package is in its own subdirectoy:
``` ```
@ -58,8 +81,3 @@ There are also pkgconfig files, but those aren't really tested.
qbs and windeployqt currently don't work very well (see issues). Using mxedeployqt might be an alternative for qbs and windeployqt currently don't work very well (see issues). Using mxedeployqt might be an alternative for
windeployqt. windeployqt.
## Binary repository
I also provide a [binary repository](https://martchus.no-ip.biz/repo/arch/ownstuff/os) containing the packages found
in this repository and a lot of packages found in the AUR.
For more information visit my [website](https://martchus.no-ip.biz/website/page.php?name=programming).