athena/PKGBUILD

33 lines
612 B
Bash
Raw Normal View History

2014-09-29 04:29:50 +00:00
# PKGBUILD for libAthena
2014-09-29 04:48:34 +00:00
_pkgname=libathena
2014-09-29 04:29:50 +00:00
pkgname=$_pkgname-git
2015-07-09 01:41:51 +00:00
pkgver=1.1.0.71.ge45679f
2014-09-29 04:29:50 +00:00
pkgrel=1
pkgdesc="Basic cross platform IO library"
arch=('i686' 'x86_64')
2015-07-09 01:08:29 +00:00
source=("${pkgname%-*}::git+https://github.com/libAthena/Athena.git")
2014-09-29 05:42:29 +00:00
options=(staticlibs)
2015-06-17 00:25:48 +00:00
license="MIT"
makedepends=('git cmake sed')
2014-09-29 04:29:50 +00:00
md5sums=('SKIP')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/$_pkgname"
git describe --tags | sed 's|-|.|g'
}
build() {
cd "$srcdir/$_pkgname"
2015-07-09 01:29:08 +00:00
mkdir -p build
cd build
2015-07-09 01:08:29 +00:00
cmake -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" ..
make
2014-09-29 04:29:50 +00:00
}
package() {
2015-07-09 01:08:29 +00:00
cd "$srcdir/$_pkgname/build"
make install
2014-09-29 04:29:50 +00:00
}