Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Latest commit

 

History

History
48 lines (30 loc) · 1.64 KB

README.md

File metadata and controls

48 lines (30 loc) · 1.64 KB

No longer maintained

Use valdar/docker-arch-build-aur instead.

It's pushing images to both quay.io and hub.docker.com.


CI

Build AUR packages

The following command will download AUR package and build it:

$ docker pull maximbaz/arch-build-aur
$ docker run --rm -v $(pwd):/pkg maximbaz/arch-build-aur /bin/bash -c '/build-aur <package>'

Build repo packages

The following command will download repo package and build it:

$ docker pull maximbaz/arch-build-aur
$ docker run --rm -v $(pwd):/pkg maximbaz/arch-build-aur /bin/bash -c '/build-repo <package>'

Build PKGBUILD

The following command will build local PKGBUILD file (must reside in a folder mounted to /build):

$ docker pull maximbaz/arch-build-aur
$ docker run --rm -v $(pwd):/pkg -v $(pwd):/build maximbaz/arch-build-aur /bin/bash -c '/build-pkgbuild'

.SRCINFO file will be updated/created in /build directory.

Compiled package location

The binary will be placed in the /pkg folder, which in the example above is mounted to the current directory on the host.