mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 01:02:26 +01:00
35 lines
897 B
Plaintext
35 lines
897 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=gnumeric
|
|
pkgver=1.10.17
|
|
pkgrel=1
|
|
pkgdesc="A GNOME Spreadsheet Program"
|
|
url="http://www.gnome.org/projects/gnumeric/"
|
|
arch="all"
|
|
license="GPL"
|
|
makedepends="gtk+-dev intltool desktop-file-utils libglade-dev goffice-dev
|
|
rarian"
|
|
install=
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
|
|
source="http://ftp.gnome.org/pub/gnome/sources/$pkgname/1.10/$pkgname-$pkgver.tar.bz2"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-schemas-install \
|
|
--disable-static \
|
|
--enable-ssindex || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make -j1 DESTDIR="$pkgdir" install || return 1
|
|
rm "$pkgdir"/usr/lib/*.la \
|
|
"$pkgdir"/usr/lib/*/*/plugins/*/*.la
|
|
}
|
|
|
|
md5sums="aacc0899222c98fa9cdd85c49a6840be gnumeric-1.10.17.tar.bz2"
|