mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 18:12:13 +08:00
25 lines
640 B
Bash
25 lines
640 B
Bash
pkgname=libgnomecanvas
|
|
pkgver=2.30.3
|
|
pkgrel=2
|
|
pkgdesc="The GNOME Canvas library"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
depends=('libglade>=2.6.4' 'libart-lgpl>=2.3.20')
|
|
makedepends=('pkg-config' 'intltool')
|
|
options=('!libtool')
|
|
url="http://www.gnome.org"
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
|
|
sha256sums=('859b78e08489fce4d5c15c676fec1cd79782f115f516e8ad8bed6abcb8dedd40')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static \
|
|
--enable-glade
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|