blob: d27c481cf7b9b2f2e4c5d76c9b92038375a10a35 (
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: Paco Pascal <me@pacopascal.com>
_checkoutdir='guile-git'
_pkgname=guile-git-lib
pkgname="$_pkgname-git"
pkgver=latest
pkgrel=1
pkgdesc='Guile-Git is a GNU Guile library providing bindings to libgit3. (git repo)'
arch=('any')
url='https://gitlab.com/guile-git/guile-git'
license=('GPL3')
options=('!strip')
depends=('guile' 'guile-bytestructures' 'libgit2')
makedepends=('autoconf' 'automake' 'pkg-config')
conflicts=("${pkgname%-git}")
provides=("${pkgname%-git}")
source=('git+https://gitlab.com/guile-git/guile-git.git')
md5sums=('SKIP')
prepare() {
cd "$_checkoutdir"
aclocal
autoconf
automake --add-missing
}
build() {
cd "$_checkoutdir"
./configure --prefix=/usr
make
}
package() {
cd "$_checkoutdir"
make DESTDIR="${pkgdir}" install
}
|