26 lines
841 B
Bash
26 lines
841 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=unicon
|
|
pkgver=13.2
|
|
pkgrel=2
|
|
pkgdesc="A modern, free and libre descendant of the Icon programming language."
|
|
arch=('i686' 'x86_64')
|
|
url='http://www.unicon.org/'
|
|
license=('GPL-2' 'Simplified-BSD')
|
|
depends=('freetype2' 'glu' 'libjpeg-turbo' 'libnsl' 'libogg' 'libvorbis' 'libxft' 'openal' 'sdl' 'unixodbc')
|
|
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/uniconproject/unicon/archive/refs/tags/${pkgver}.tar.gz")
|
|
sha512sums=('fba5cb5d394e0e21815068ddc583cb55d9b43f06a9be0de714f40c77d2c4459882b07e46532afaa00b2cee6c43565c5b95c81d2708bdee698d3c08f98863ae12')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
./configure \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make DESTDIR="$pkgdir/" install
|
|
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
|
|
}
|