mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
26 lines
963 B
Bash
26 lines
963 B
Bash
# $Id: PKGBUILD 51761 2009-09-11 06:56:16Z eric $
|
|
# Maintainer: Damir Perisa <damir@archlinux.org>
|
|
|
|
pkgname=glabels
|
|
pkgver=2.2.5
|
|
pkgrel=1
|
|
pkgdesc="Creating labels and business cards the very easy way"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL' 'LGPL')
|
|
url="http://glabels.sourceforge.net/"
|
|
depends=('libgnomeui' 'libsm' 'desktop-file-utils' 'shared-mime-info')
|
|
makedepends=('pkgconfig' 'perlxml' 'gnome-doc-utils>=0.11.2' 'intltool')
|
|
options=('!libtool')
|
|
install=glabels.install
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('a98932cce677f72af8cba2add00adfe3')
|
|
sha1sums=('115b4eebe35e2efc3f4203f318cf6064c4a26d10')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-static \
|
|
--disable-update-mimedb --disable-update-desktopdb || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|