bump version, fix deps

This commit is contained in:
Alexander Nicholi 2023-07-17 18:49:06 -04:00
parent 7e64ec6d13
commit ccf1595a54
No known key found for this signature in database
GPG Key ID: 2C271FC940D87593

View File

@ -1,22 +1,22 @@
# Maintainer: Alexander Nicholi <me@nicholatian.com> # Maintainer: Alexander Nicholi <me@nicholatian.com>
pkgname=grit pkgname=grit
pkgver=0.8.16 pkgver=0.8.17
pkgrel=1 pkgrel=1
epoch= epoch=
pkgdesc='Game Raster Image Transmogrifier' pkgdesc='Game Raster Image Transmogrifier'
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
url="https://github.com/devkitPro/$pkgname" url="https://github.com/devkitPro/$pkgname"
license=('GPL-2.0') license=('GPL-2.0')
depends=() depends=('freeimage')
makedepends=('git') makedepends=()
provides=("$pkgname") provides=("$pkgname")
conflicts=("$pkgname") conflicts=("$pkgname")
source=("https://github.com/devkitPro/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2") source=("https://github.com/devkitPro/$pkgname/archive/refs/tags/v$pkgver.tar.gz")
sha1sums=('f099d711e8e8d61e90078050099e61a9f691d046') sha256sums=('fa0da0f8dca64b7fa296b704eccc512ec84458b6b00935ce5d240951f041f534')
build() { build() {
cd "$srcdir/$pkgname-$pkgver" cd "$srcdir/$pkgname-$pkgver"
./autogen.sh
./configure ./configure
make -j$(($(nproc) * 2)) make -j$(($(nproc) * 2))
} }