28 lines
890 B
Bash
28 lines
890 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=gobby
|
|
pkgver=0.6.0
|
|
pkgrel=1
|
|
pkgdesc="A collaborative, free and libre text editor"
|
|
arch=('i686' 'x86_64')
|
|
url='https://gobby.github.io/'
|
|
license=('ISC' 'CC0-1.0')
|
|
depends=('gtkmm' 'gtksourceview3' 'libinfinity' 'libxml++2.6')
|
|
makedepends=('gettext-tiny' 'intltool' 'yelp-tools' 'mesa-libgl')
|
|
source=("https://deb.debian.org/debian/pool/main/g/gobby/gobby_${pkgver}.orig.tar.gz")
|
|
sha512sums=('963ff10a917d13f6c10fa27e50af881d0028ba7e602876222703d2ac37cdfd8208d10a5200278cda2f26b8e0ab6619df7a742b9c1023399361664ffcd47863a6')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
[ -x configure ] || ./autogen.sh
|
|
export GLIB_COMPILE_SCHEMAS="/usr/bin/glib-compile-schemas"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
|
|
}
|