blob: 6d203e15b616c9b19e967f7cf5ed945e9eaabef8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: Lazerbeak12345 <lazerbeak12345 at users dot noreply dot github dot com>
# Contributor: Kian Kasad <kian at kasad.com>
pkgname=s6-man-pages-git
pkgver=v2.13.1.0.1.r0.3e6139f
pkgrel=1
pkgdesc='Manual pages for the s6 suite of software'
arch=('any')
url='https://git.sr.ht/~flexibeast/s6-man-pages'
license=('ISC')
groups=()
depends=()
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("git+$url")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-git}"
printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}
build() {
cd "$srcdir/${pkgname%-git}"
}
package() {
cd "$srcdir/${pkgname%-git}"
install -d -m 0755 $pkgdir/usr/share/man/man{7,8}
make DESTDIR="$pkgdir" PREFIX="/usr" install
install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|