blob: 8cc6f94c05fca6a0e46d9abbc4980e54dca975e4 (
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
46
47
48
|
# Maintainer: Alexandre Bury <alexandre.bury@gmail.com>
pkgname=bearlibterminal-git
pkgver=r417.036ba1a
pkgrel=1
pkgdesc='BearLibTerminal is a library that creates a terminal-like window facilitating flexible textual output and uncomplicated input processing.'
arch=('i686' 'x86_64')
url='http://foo.wyrd.name/en:bearlibterminal'
license=('MIT')
replaces=('bearlibterminal-hg')
makedepends=('cmake' 'python-setuptools' 'git' 'libgl')
depends=('libgl')
provides=('bearlibterminal')
source=('bearlibterminal-git::git+https://github.com/cfyzium/bearlibterminal')
md5sums=('SKIP')
pkgver() {
cd "$pkgname"
( set -o pipefail
git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
cd "$srcdir/$pkgname/Build"
cmake ..
make
}
package() {
# C shared library & header
cd "$srcdir/$pkgname"
SOLIB="Output/Linux64/libBearLibTerminal.so"
INCDIR="Terminal/Include"
install -Dm644 "$SOLIB" "$pkgdir/usr/lib/libBearLibTerminal.so"
install -Dm644 "$INCDIR/C/BearLibTerminal.h" "$pkgdir/usr/include/BearLibTerminal.h"
# And python library
cp CHANGELOG.md "$INCDIR/Python"
cp "$SOLIB" "$INCDIR/Python/bearlibterminal/"
cd "$INCDIR/Python"
python3 setup.py install --root="$pkgdir/" --prefix=/usr --optimize=1
# TODO: other languages?
}
|