mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
646 B
Bash
23 lines
646 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: dojo <joerg.doll[at]gmx.de>
|
|
|
|
pkgname=gtkdialog
|
|
pkgver=0.7.20
|
|
pkgrel=1
|
|
pkgdesc="Gtkdialog is a small utility for fast and easy GUI building."
|
|
arch=('i686' 'x86_64')
|
|
url="http://linux.pte.hu/~pipas/gtkdialog/"
|
|
license=("GPL")
|
|
makedepends=('pkgconfig')
|
|
depends=('gtk2' 'libglade')
|
|
source=(ftp://linux.pte.hu/pub/gtkdialog/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('597103b3ec575dd7af9e84931a62c532')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make prefix=$startdir/pkg/usr install
|
|
|
|
}
|