diff options
author | Jean-Louis Fuchs <ganwell@fangorn.ch> | 2017-04-29 15:08:38 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-05-02 09:41:15 +0000 |
commit | 5cc18dc21a87731f5dedce4e6472a1e507c4ad04 (patch) | |
tree | a1327f7e72f835ceaff99c0dc41834af892801c2 /community/lablgtk | |
parent | 988ab9f1a02b958966c19232fc8eb26b1298081a (diff) | |
download | aports-5cc18dc21a87731f5dedce4e6472a1e507c4ad04.tar.bz2 aports-5cc18dc21a87731f5dedce4e6472a1e507c4ad04.tar.xz |
community/lablgtk: move from testing
Diffstat (limited to 'community/lablgtk')
-rw-r--r-- | community/lablgtk/APKBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/community/lablgtk/APKBUILD b/community/lablgtk/APKBUILD new file mode 100644 index 0000000000..d820aba609 --- /dev/null +++ b/community/lablgtk/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Jean-Louis Fuchs <ganwell@fangorn.ch> +# Maintainer: Jean-Louis Fuchs <ganwell@fangorn.ch> +pkgname=lablgtk +pkgver=2.18.5 +pkgrel=3 +pkgdesc="LablGtk - an OCaml interface to GTK+ 2.x" +url="http://lablgtk.forge.ocamlcore.org/" +# ocaml is not built for x86, armhf +arch="x86_64" +license="GPL" +depends_dev="lablgtk gtk+-dev gtkspell-dev librsvg-dev gtksourceview2-dev" +depends="ocaml-findlib camlp4 ocaml" +makedepends="$depends $depends_dev" +subpackages="$pkgname-doc $pkgname-dev" +source="https://forge.ocamlcore.org/frs/download.php/1627/lablgtk-$pkgver.tar.gz" +builddir="$srcdir/lablgtk-$pkgver" + +options="!check" + +build() { + cd "$builddir" + + ./configure --prefix=/usr + make world + make opt + make doc +} + +doc() { + pkgdesc="$pkgdesc (documentation)" + + local docdir="$subpkgdir"/usr/share/doc/$pkgname/ + mkdir -p "$docdir" + cp -r "$builddir"/doc/html/* "$docdir"/ +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install + rm -f "$pkgdir"/usr/lib/ocaml/ld.conf +} + +md5sums="43eb7062439f7ddd0d8ad96c3e3b87dd lablgtk-2.18.5.tar.gz" +sha256sums="2bf251db21c077fdd26c035ea03edd8fe609187f908e520e87a8ffdd9c36d233 lablgtk-2.18.5.tar.gz" +sha512sums="7b6ba1a4dfa82cc3bbc502082ff4fccc23cc06ee4f30d01a2e423f3f99e945a4befe450d230b5aa19c5b810e9f46f2838655099d49da2db7c8a2e52eac213024 lablgtk-2.18.5.tar.gz" |