mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
community/allegro to 5.2.6.0-1
This commit is contained in:
parent
a4753df3f7
commit
228797c623
1 changed files with 11 additions and 16 deletions
|
@ -8,36 +8,31 @@
|
|||
# - comment fixing man path
|
||||
|
||||
pkgname=allegro
|
||||
pkgver=5.2.5
|
||||
pkgrel=2
|
||||
pkgver=5.2.6.0
|
||||
pkgrel=1
|
||||
pkgdesc='Portable library mainly aimed at video game and multimedia programming'
|
||||
arch=(x86_64)
|
||||
url='https://liballeg.org/'
|
||||
license=(custom)
|
||||
makedepends=(cmake git glu libtheora mesa-libgl ninja opusfile xorgproto)
|
||||
makedepends=(cmake glu libtheora mesa-libgl opusfile xorgproto)
|
||||
depends=(dumb gtk2 jack libgl libpulse libtheora libwebp libxpm opusfile physfs)
|
||||
source=("git+https://github.com/liballeg/${pkgname}${pkgver%%.*}#tag=$pkgver.0")
|
||||
md5sums=('SKIP')
|
||||
source=("https://github.com/liballeg/allegro5/releases/download/$pkgver/allegro-$pkgver.tar.gz")
|
||||
sha256sums=('5de8189ec051e1865f359654f86ec68e2a12a94edd00ad06d1106caa5ff27763')
|
||||
|
||||
build() {
|
||||
mkdir -p build
|
||||
cd build
|
||||
cmake "../${pkgname}${pkgver%%.*}" \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
cmake ../$pkgname-$pkgver \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DWANT_DOCS_HTML=OFF \
|
||||
-G Ninja
|
||||
ninja
|
||||
-DWANT_DOCS_HTML=OFF
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
DESTDIR="$pkgdir" ninja -C build install
|
||||
install -Dm644 "${pkgname}${pkgver%%.*}/LICENSE.txt" \
|
||||
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
cd build
|
||||
make DESTDIR="$pkgdir" install
|
||||
install -Dm644 "$srcdir"/$pkgname-$pkgver/LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
|
||||
|
||||
# Fix man path
|
||||
#mv -v -f "$pkgdir/usr/man" "$pkgdir/usr/share/man"
|
||||
}
|
||||
|
||||
# getver: liballeg.org/a5docs/trunk
|
||||
# vim: ts=2 sw=2 et:
|
||||
|
|
Loading…
Reference in a new issue