blob: 430d745a1ae2b201f7247b5a9897ef96b4cdff17 (
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
|
# $Id$
# Maintainer: Joey Pabalinas <alyptik@protonmail.com>
pkgname=cepl-git
_pkgname=${pkgname%-*}
pkgver=3.8.0.r0.g3757c50
pkgrel=1
pkgdesc='An interactive C (ISO/IEC 9899:2011) read–eval–print loop (REPL) currently supporting multiple compilers, shell-esque readline key-bindings/tab-completion, variable tracking, and incremental undo.'
url='https://github.com/alyptik/cepl'
arch=('i686' 'x86_64')
license=('GPL3')
depends=('gcc' 'readline')
source=("${_pkgname}::git+http://github.com/alyptik/cepl")
sha256sums=('SKIP')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
options=('zipman')
pkgver() {
cd "${srcdir}/${_pkgname}"
git describe --long --tags 2>/dev/null | sed 's/^v//; s/\([^-]*-g\)/r\1/; s/-/./g'
}
build() {
cd "${srcdir}/${_pkgname}"
make
}
package() {
cd "${srcdir}/${_pkgname}"
mkdir -p "${pkgdir}/usr/share/man/man7"
make PREFIX="${pkgdir}/usr" install
}
|