blob: d57c8362b46e15677a4567e1e511bf8a00e2cd00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Maintainer: Grey Christoforo <first name [at] last name [dot] net>
pkgname=gtksheet
pkgver=4.3.13
pkgrel=1
pkgdesc="A spreadsheet widget for gtk3"
arch=(x86_64)
url=http://fpaquet.github.io/gtksheet/
license=('GPL2')
depends=(gtk3 pango cairo atk glade gobject-introspection)
makedepends=(autoconf)
source=(https://github.com/fpaquet/gtksheet/archive/V${pkgver}.tar.gz)
sha256sums=('48db0b057de1792c705f20a2c756d819d6e05e6e9e27304c5bab7126093729b3')
prepare() {
cd gtksheet-${pkgver}
autoreconf -i
./configure \
--enable-glade \
--enable-introspection \
--prefix=/usr
}
build() {
cd gtksheet-${pkgver}
make
}
package() {
cd gtksheet-${pkgver}
make install "DESTDIR=/${pkgdir}"
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/$pkgname/COPYING"
}
# vim:ts=2:sw=2:et:
|