25 lines
683 B
Bash
25 lines
683 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=aiksaurus
|
|
pkgver=1.2.1
|
|
pkgrel=2
|
|
pkgdesc='A cross-platform, free thesaurus'
|
|
url='http://aiksaurus.sourceforge.net/'
|
|
license=('GPL-2')
|
|
arch=('i686' 'x86_64')
|
|
depends=('gtk2')
|
|
source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
sha512sums=('48591850f28f1a8f4b4986df14090ef7bd57cbfbad739cb0013db021f6f5bcb3c592b38e36774735499e27b9e99330504f8d9c6022158e25469cbc81d13f7463')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --with-gtk
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/$pkgname"
|
|
}
|