mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
29 lines
954 B
Bash
29 lines
954 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
|
|
pkgname=gnome-ppp
|
|
pkgver=0.3.23
|
|
pkgrel=6
|
|
pkgdesc="A GNOME 2 WvDial frontend"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.gnomefiles.org/app.php?soft_id=41"
|
|
license=('GPL2')
|
|
depends=('libglade' 'wvdial')
|
|
makedepends=('intltool' 'pkgconfig')
|
|
install=gnome-ppp.install
|
|
source=(http://gd.tuwien.ac.at/opsys/linux/gentoo/distfiles/${pkgname}-${pkgver}.tar.bz2
|
|
gnome-ppp-0.3.23-implicit-decl.patch
|
|
gnome-ppp-0.3.23-wvdial-notify.patch)
|
|
md5sums=('ec2e20fc713a01c953d759bea3df8618'
|
|
'22eb07c957b8e00b1939560785c97c45'
|
|
'00452b66d033316adff0c01373f6108a')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
patch -Np0 -i ${srcdir}/gnome-ppp-0.3.23-implicit-decl.patch || return 1
|
|
patch -Np0 -i ${srcdir}/gnome-ppp-0.3.23-wvdial-notify.patch || return 1
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|