mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 01:42:13 +08:00
28 lines
632 B
Bash
28 lines
632 B
Bash
pkgbase=gtkmm
|
|
pkgname=('gtkmm')
|
|
pkgver=2.24.2
|
|
pkgrel=6
|
|
pkgdesc="C++ bindings for gtk2"
|
|
arch=('x86_64')
|
|
depends=('gtk2' 'pangomm' 'atkmm')
|
|
license=('LGPL')
|
|
options=('!libtool' '!emptydirs')
|
|
url="http://gtkmm.sourceforge.net/"
|
|
install=install
|
|
source=("http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/2.24/${pkgbase}-${pkgver}.tar.xz")
|
|
md5sums=('388a63ffc40cc8e208df9a1732a67d2d')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgbase}-${pkgver}"
|
|
./configure --prefix=/usr --disable-documentation
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgbase}-${pkgver}"
|
|
|
|
sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|