blob: 0b8ad3f9b3e01dec46fc9179c5e94a04729fb8f4 (
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
39
40
41
42
43
44
45
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=dejagnu-git
pkgver=1.6.3.r47.g865dc67
pkgrel=1
pkgdesc="A framework for testing other programs"
arch=('any')
url="https://www.gnu.org/software/dejagnu/"
license=('GPL3')
depends=('expect' 'sh')
makedepends=('git' 'texinfo')
provides=("dejagnu=$pkgver")
conflicts=('dejagnu')
source=("git+https://git.savannah.gnu.org/git/dejagnu.git")
sha256sums=('SKIP')
pkgver() {
cd "dejagnu"
_tag=$(git tag -l --sort -v:refname | grep -m1 dejagnu- | sed 's/dejagnu-//;s/-release//')
_rev=$(git rev-list --count dejagnu-$_tag-release..HEAD)
_hash=$(git rev-parse --short HEAD)
printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash"
}
build() {
cd "dejagnu"
./configure \
--prefix="/usr"
make
}
check() {
cd "dejagnu"
make check
}
package() {
cd "dejagnu"
make DESTDIR="$pkgdir" install
}
|