mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 01:57:17 +08:00
24 lines
738 B
Bash
24 lines
738 B
Bash
# $Id: PKGBUILD 69434 2010-02-20 14:17:33Z allan $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gconf-perl
|
|
_realname=Gnome2-GConf
|
|
pkgver=1.044
|
|
pkgrel=2
|
|
pkgdesc="Gnome2-GConf perl bindings for gconf"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
url="http://gtk2-perl.sourceforge.net/"
|
|
makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
|
|
depends=('glib-perl>=1.142' 'gconf>=2.16' 'perl>=5.10.0')
|
|
options=(!emptydirs)
|
|
source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/${_realname}-${pkgver}.tar.gz)
|
|
md5sums=('ea386003b18f067524833b0eeb271330')
|
|
|
|
build() {
|
|
cd ${srcdir}/${_realname}-${pkgver}
|
|
perl Makefile.PL INSTALLDIRS=vendor || return 1
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|