diff options
Diffstat (limited to 'community/gtksourceviewmm/PKGBUILD')
-rw-r--r-- | community/gtksourceviewmm/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/gtksourceviewmm/PKGBUILD b/community/gtksourceviewmm/PKGBUILD new file mode 100644 index 000000000..1b7d00a51 --- /dev/null +++ b/community/gtksourceviewmm/PKGBUILD @@ -0,0 +1,28 @@ +#$Id: PKGBUILD 88691 2013-04-21 22:17:11Z heftig $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Ionut Biru <ibiru@archlinux.org> + +pkgname=gtksourceviewmm +pkgver=3.2.0 +pkgrel=4 +pkgdesc='C++ bindings for the gtksourceview library' +arch=('x86_64' 'i686') +url='http://projects.gnome.org/gtksourceviewmm/' +license=('LGPL2.1') +depends=('gtkmm3' 'gtksourceview3') +options=('!libtool') +source=("http://download.gnome.org/sources/$pkgname/3.2/$pkgname-$pkgver.tar.xz") +sha256sums=('9dc0c44f00627e434a36ac7c3a34d9c30ebe45eb6dc682dc733a85dcead2ba66') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |