blob: 1cb237c41b416d0f80ce682cf61f08ced4c22fe9 (
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
|
# Maintainer: Michał Wojdyła < micwoj9292 at gmail dot com >
# Contributor: Guenther Starnberger <gst@sysfrog.org>
# Contributor: Moritz Lipp <mlq@pwmt.org>
pkgname=gpshell
pkgver=2.4.0
pkgrel=1
_commit=8d7587c78a8dac444491eb260edfe542359fb397
pkgdesc="gpshell GlobalPlatform command shell"
license=('GPL3')
arch=('i686' 'x86_64')
url="https://github.com/kaoh/globalplatform"
depends=('glibc' 'globalplatform')
makedepends=('pandoc' 'cmake')
source=(https://github.com/kaoh/globalplatform/archive/$_commit.zip)
md5sums=('d0c14024fb74203e42ad51e5660f11be')
build() {
cd globalplatform-$_commit/gpshell
cmake . -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd globalplatform-$_commit/gpshell
make DESTDIR=$pkgdir install
}
|