PKGBUILDs/community/sdl_gfx/PKGBUILD

37 lines
963 B
Bash
Raw Normal View History

2012-09-02 22:41:07 +00:00
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
2017-03-31 00:02:05 +00:00
# Contributor: Allan McRae <allan@archlinux.org>
2011-12-05 18:34:37 +00:00
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2019-08-25 21:22:37 +00:00
# - configure with --disable-mmx
2011-12-05 18:34:37 +00:00
pkgname=sdl_gfx
2017-03-31 00:02:05 +00:00
pkgver=2.0.26
2020-05-21 01:20:31 +00:00
pkgrel=5
2017-03-31 00:02:05 +00:00
pkgdesc="SDL graphics drawing primitives and other support functions"
2019-08-25 21:22:37 +00:00
url="https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/"
2018-11-13 19:37:02 +00:00
arch=(x86_64)
2017-03-31 00:02:05 +00:00
license=(LGPL)
depends=(sdl)
2019-08-25 21:22:37 +00:00
source=(https://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-${pkgver}.tar.gz)
2017-03-31 00:02:05 +00:00
sha256sums=('7ceb4ffb6fc63ffba5f1290572db43d74386cd0781c123bc912da50d34945446')
2011-12-05 18:34:37 +00:00
2018-11-18 17:08:05 +00:00
prepare() {
cd SDL_gfx-$pkgver
# shipped configure was not regenerated since 2.0.25, resulting in bad soname
# https://bugs.archlinux.org/task/60821
autoreconf -fvi
}
2011-12-05 18:34:37 +00:00
build() {
2017-03-31 00:02:05 +00:00
cd SDL_gfx-$pkgver
2019-08-25 21:22:37 +00:00
./configure --prefix=/usr --disable-mmx
2011-12-05 18:34:37 +00:00
make
}
package() {
2017-03-31 00:02:05 +00:00
cd SDL_gfx-$pkgver
make DESTDIR="$pkgdir" install
2011-12-05 18:34:37 +00:00
}