blob: 1fa0b3264b2f3425b5960ef82e7dd56b159a1012 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gnumeric
pkgver=1.12.10
pkgrel=0
pkgdesc="A GNOME Spreadsheet Program"
url="http://www.gnome.org/projects/gnumeric/"
arch="all"
license="GPL"
makedepends="gtk+3.0-dev intltool desktop-file-utils goffice-dev rarian
python-dev py-gobject3-dev"
install=
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="http://ftp.gnome.org/pub/gnome/sources/$pkgname/1.12/$pkgname-$pkgver.tar.xz"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
update_config_sub || return 1
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--with-python \
|| return 1
make itlocaledir="/usr/share/locale" || return 1
}
package() {
cd "$_builddir"
make -j1 itlocaledir="/usr/share/locale" \
DESTDIR="$pkgdir" install || return 1
rm "$pkgdir"/usr/lib/*.la \
"$pkgdir"/usr/lib/*/*/plugins/*/*.la
}
md5sums="c1a61a57c796d466637b85c9d7117315 gnumeric-1.12.10.tar.xz"
sha256sums="4c9ee095af14a24b3cb9ed9051736d41488cacaf2960a00fe1e135ca0f3b1fde gnumeric-1.12.10.tar.xz"
sha512sums="017e2af94094a4792fd68088010fb11f544019f11c12733dc470a50dcf1a7a0fb1f3e4c22da79c6e02578dfe0c729aedcde2a0d83eb8401d2e8e03b8c28dcd67 gnumeric-1.12.10.tar.xz"
|