generated from archlinux/template
Merge remote-tracking branch 'aur/master'
This commit is contained in:
commit
66d4e13f4f
15
.SRCINFO
Normal file
15
.SRCINFO
Normal file
@ -0,0 +1,15 @@
|
||||
pkgbase = grit
|
||||
pkgdesc = Game Raster Image Transmogrifier
|
||||
pkgver = 0.9.2
|
||||
pkgrel = 1
|
||||
url = https://github.com/devkitPro/grit
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = GPL-2.0
|
||||
depends = freeimage
|
||||
provides = grit
|
||||
conflicts = grit
|
||||
source = grit-0.9.2.tar.gz::https://github.com/devkitPro/grit/archive/refs/tags/v0.9.2.tar.gz
|
||||
sha256sums = b6f7f4441ed29adc33191e3d809358f57411e60514174cdec4cce728ef2091ce
|
||||
|
||||
pkgname = grit
|
28
PKGBUILD
Normal file
28
PKGBUILD
Normal file
@ -0,0 +1,28 @@
|
||||
# Maintainer: Alexander Nicholi <me@nicholatian.com>
|
||||
pkgname=grit
|
||||
pkgver=0.9.2
|
||||
pkgrel=1
|
||||
epoch=
|
||||
pkgdesc='Game Raster Image Transmogrifier'
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://github.com/devkitPro/$pkgname"
|
||||
license=('GPL-2.0')
|
||||
depends=('freeimage')
|
||||
makedepends=()
|
||||
provides=("$pkgname")
|
||||
conflicts=("$pkgname")
|
||||
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/devkitPro/$pkgname/archive/refs/tags/v$pkgver.tar.gz")
|
||||
sha256sums=('b6f7f4441ed29adc33191e3d809358f57411e60514174cdec4cce728ef2091ce')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
./autogen.sh
|
||||
./configure
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
install -Dsm755 "$srcdir/$pkgname-$pkgver/$pkgname" "$pkgdir/usr/bin/$pkgname"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user