mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
extra/sdl_gfx to 2.0.26-1
This commit is contained in:
parent
432364016a
commit
7bd25b3be7
1 changed files with 14 additions and 20 deletions
|
@ -1,36 +1,30 @@
|
|||
# $Id: PKGBUILD 144350 2011-12-04 22:59:47Z heftig $
|
||||
# $Id$
|
||||
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
|
||||
# Contributor: Allan McRae <allan@archlinux.org
|
||||
# Contributor: Allan McRae <allan@archlinux.org>
|
||||
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - need --disable-mmx for ARM as well
|
||||
|
||||
pkgname=sdl_gfx
|
||||
pkgver=2.0.25
|
||||
pkgver=2.0.26
|
||||
pkgrel=1
|
||||
pkgdesc="SDL Graphic Primitives"
|
||||
arch=('i686' 'x86_64')
|
||||
license=('LGPL')
|
||||
options=()
|
||||
url="http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx"
|
||||
pkgdesc="SDL graphics drawing primitives and other support functions"
|
||||
url="http://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/"
|
||||
arch=(i686 x86_64)
|
||||
license=(LGPL)
|
||||
depends=(sdl)
|
||||
source=(http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-${pkgver}.tar.gz)
|
||||
depends=('sdl')
|
||||
md5sums=('ea24ed4b82ff1304809c363494fa8e16')
|
||||
sha256sums=('7ceb4ffb6fc63ffba5f1290572db43d74386cd0781c123bc912da50d34945446')
|
||||
|
||||
build() {
|
||||
cd SDL_gfx-${pkgver}
|
||||
|
||||
if [ "${CARCH}" == "x86_64" -o "${CARCH}" == "arm" -o "${CARCH}" == "armv6h" -o "${CARCH}" == "armv7h" -o "${CARCH}" == "aarch64" ]; then
|
||||
./configure --prefix=/usr --disable-mmx
|
||||
else
|
||||
./configure --prefix=/usr
|
||||
fi
|
||||
|
||||
cd SDL_gfx-$pkgver
|
||||
./configure --prefix=/usr \
|
||||
$([[ $CARCH == x86_64 || ${CARCH} == arm || ${CARCH} == armv6h || ${CARCH} == armv7h || ${CARCH} == aarch64 ]] && echo --disable-mmx)
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd SDL_gfx-${pkgver}
|
||||
make DESTDIR=${pkgdir} install
|
||||
cd SDL_gfx-$pkgver
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue