mirror of https://github.com/libAthena/athena.git
Updated PKGBUILD
This commit is contained in:
parent
916515f0d7
commit
dde7164651
7
PKGBUILD
7
PKGBUILD
|
@ -5,7 +5,7 @@ pkgver=1.1.0.60.g8ca7027
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Basic cross platform IO library"
|
pkgdesc="Basic cross platform IO library"
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
source=("${pkgname%-*}::git+https://github.com/libAthena/Athena.git#branch=copy-streamers")
|
source=("${pkgname%-*}::git+https://github.com/libAthena/Athena.git")
|
||||||
options=(staticlibs)
|
options=(staticlibs)
|
||||||
license="MIT"
|
license="MIT"
|
||||||
makedepends=('git cmake sed')
|
makedepends=('git cmake sed')
|
||||||
|
@ -19,12 +19,13 @@ pkgver() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$srcdir/$_pkgname"
|
cd "$srcdir/$_pkgname"
|
||||||
cmake -DCMAKE_INSTALL_PREFIX="$pkgdir/usr"
|
mkdir build && cd build
|
||||||
|
cmake -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" ..
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "$srcdir/$_pkgname"
|
cd "$srcdir/$_pkgname/build"
|
||||||
make install
|
make install
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue