blob: f5f9775fdfabe4a3d350806f09c78ff8496be011 (
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
|
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=libalpm-extra
pkgver=0.2
pkgrel=1
pkgdesc="extra-capabilities for libalpm: a hook which misses from linux"
arch=('any')
url="https://git.eckner.net/Erich/${pkgname}"
license=('GPL')
groups=()
depends=()
makedepends=('linux')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
source=(
"https://git.eckner.net/Erich/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz"
)
sha512sums=('a36b8d32aa1ebd081d30d7d6cf9a908ad5fce28ffcf7fe9567d9209687fe1c11bb387792bdf07839f219849585a89d82304f061097545bb0efaa7f9399692b5c')
build() {
cd ${pkgname}-${pkgver}
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}
|