blob: dce76e096d34d3298fcee38cda5a82fce8acef89 (
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: Erich Eckner <arch at eckner dot net>
pkgname=report-installed-packages
pkgver=0.4
pkgrel=1
pkgdesc="report about installed (and therefore presumably working) packages from testing"
arch=('any')
url="https://git.eckner.net/Erich/${pkgname}"
license=('GPL')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=(
'sendmailadvanced: for sending email reports'
)
provides=()
conflicts=()
replaces=()
backup=()
options=()
source=(
"https://git.eckner.net/Erich/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz"
)
sha512sums=('241c24f50815d75c2ddcd28d5f0d6530239ffb2cb0aa2d5b32ad1aa72739cae99363787bbbbdcf4f112a6c084928df70d97aaec24a9ede4a2adf4b65dd5ffbc3')
build() {
cd ${pkgname}-${pkgver}
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}
|