summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 64637197254c43a0c1c3f7f1772b2214dbe02006 (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
33
34
35
36
37
38
# Maintainer: Michael Picht <mipi@fsfe.org>
 
pkgname=crema
pkgver=2.3.1
pkgrel=1
pkgdesc="Manage (remote) custom repositories"          
arch=(any) 
url="https://gitlab.com/mipimipi/$pkgname"  
license=(GPL3) 
source=("${pkgname}-${pkgver}.tar.gz::${url}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")         
md5sums=(SKIP) 
validpgpkeys=(11ECD6695134183B3E7AF1C2223AAA374A1D59CE) # Michael Picht <mipi@fsfe.org>
depends=( 
    devtools
    git
    pacman
    rsync
    sudo
) 
makedepends=(
    git
    go
    make
    asciidoctor
) 
optdepends=(gnupg) 
provides=(crema)
conflicts=(crema-git)
 
build() { 
    cd "${pkgname}-${pkgver}"
    make
} 
 
package() { 
  cd "${pkgname}-${pkgver}"
  make DESTDIR="$pkgdir" install 
}