diff options
| author | Sergiusz Urbaniak <sergiusz.urbaniak@gmail.com> | 2016-04-18 21:10:46 +0200 |
|---|---|---|
| committer | Sergiusz Urbaniak <sergiusz.urbaniak@gmail.com> | 2016-04-18 21:10:46 +0200 |
| commit | 412f4d58063efd9e3d817c0c2aff9449ff124dec (patch) | |
| tree | 370ad97cd2304347214dc0ec5ba1dcc7d30aea56 /aur | |
| parent | 6c0e2ff2813eb1b2c1aae147744a810b9edbc445 (diff) | |
rkt: generate man pages, bash completion
Diffstat (limited to 'aur')
| -rw-r--r-- | aur/rkt/PKGBUILD | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/aur/rkt/PKGBUILD b/aur/rkt/PKGBUILD index b005a70..7489d75 100644 --- a/aur/rkt/PKGBUILD +++ b/aur/rkt/PKGBUILD @@ -33,6 +33,8 @@ build() { --with-stage1-flavors=coreos \ --with-stage1-default-location=/usr/lib/rkt/stage1.aci make -s + make -s bash-completion + make -s manpages } package() { @@ -48,6 +50,10 @@ package() { install -Dm644 "${srcdir}/rkt.sysusers" "${pkgdir}/usr/lib/sysusers.d/rkt.conf" install -Dm644 "dist/bash_completion/rkt.bash" "${pkgdir}/usr/share/bash-completion/completions/rkt" + for f in $(ls dist/manpages); do + install -Dm644 "dist/manpages/${f}" "${pkgdir}/usr/share/man/man1/${f}" + done + cd "build-${pkgname}-${pkgver}" install -Dm755 bin/rkt "$pkgdir/usr/bin/rkt" install -Dm644 bin/stage1-coreos.aci "$pkgdir/usr/lib/rkt/stage1.aci" |
