mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
21 lines
633 B
Bash
21 lines
633 B
Bash
# $Id: PKGBUILD 64685 2010-01-21 21:49:23Z juergen $
|
|
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
|
|
|
|
pkgname=rep-gtk
|
|
pkgver=0.90.2
|
|
pkgrel=1
|
|
pkgdesc="Binding of the GTK and GDK libraries for the librep Lisp environment"
|
|
arch=('i686' 'x86_64')
|
|
url="http://rep-gtk.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('librep>=0.90.0' 'gtk2')
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('3477b19e9dc4eeb3255f3596e40d3e4c')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|