diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-06-22 12:58:16 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-06-22 12:58:20 +0000 |
commit | 2c3d674569e8807cf2742ae6a4e7a11b32ca3a0e (patch) | |
tree | ede86778e47b42c4af1a25773e7f43e5bdbcad76 /testing/py-pygtksourceview2/APKBUILD | |
parent | 9efebb04412fcb06c488a4eab38cfec42f8361a9 (diff) | |
download | aports-2c3d674569e8807cf2742ae6a4e7a11b32ca3a0e.tar.bz2 aports-2c3d674569e8807cf2742ae6a4e7a11b32ca3a0e.tar.xz |
testing/py-pygtksourceview2: new aport
Diffstat (limited to 'testing/py-pygtksourceview2/APKBUILD')
-rw-r--r-- | testing/py-pygtksourceview2/APKBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/py-pygtksourceview2/APKBUILD b/testing/py-pygtksourceview2/APKBUILD new file mode 100644 index 0000000000..3c4131ab26 --- /dev/null +++ b/testing/py-pygtksourceview2/APKBUILD @@ -0,0 +1,35 @@ +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +pkgname=py-pygtksourceview2 +_pkgname=pygtksourceview +pkgver=2.10.1 +pkgrel=0 +pkgdesc="Python bindings for gtksourceview2" +url="http://www.gnome.org" +arch="all" +license="GPL" +depends="python" +makedepends="gtksourceview2-dev py-gtk-dev python-dev py-gobject-dev" +install="" +subpackages="$pkgname-dev" +source="https://download.gnome.org/sources/$_pkgname/2.10/$_pkgname-$pkgver.tar.gz" +builddir="$srcdir/$_pkgname-$pkgver" + +build() { + cd "$builddir" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static + make || return 1 +} + +package() { + cd "$builddir" + make DESTDIR="${pkgdir}" install +} + +md5sums="7a4dd87a515374637e1acf0b340eaa92 pygtksourceview-2.10.1.tar.gz" +sha256sums="2ae9356b0b189e7ebf61e366152aac0a471b17b4ddead5bf747bf4c912a0d698 pygtksourceview-2.10.1.tar.gz" +sha512sums="88c45e8b20e49d41ce5b692df17be9d020d77878cf67f2cd2ed64c93baca4a0619217eca4a460be7a0fedd3bd14877f97e88a82728e113cbdeb31a9e43d97450 pygtksourceview-2.10.1.tar.gz" |