blob: a5c6d89c51d41490c4633a1b0e6a5a321e1dc141 (
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
|
# Maintainer: Kusoneko <kusoneko@kusoneko.moe>
pkgname=scooper-git
pkgver=1.3.r118.992e373
pkgrel=1
pkgdesc="CGI and FastCGI web interface for litterbox IRC logger"
arch=('x86_64')
url="https://git.causal.agency/scooper"
license=('GPL3')
makedepends=('git')
depends=('kcgi')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("${pkgname%-git}::git+https://git.causal.agency/${pkgname%-git}.git")
md5sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-git}"
printf "%s.r%s.%s" "$(git describe --tags --abbrev=0)" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/${pkgname%-git}"
./configure --prefix=/usr --mandir=/usr/share/man
make all
}
package() {
cd "$srcdir/${pkgname%-git}"
make DESTDIR="$pkgdir/" install
}
|