diff options
Diffstat (limited to 'testing/camlp4')
-rw-r--r-- | testing/camlp4/APKBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/camlp4/APKBUILD b/testing/camlp4/APKBUILD new file mode 100644 index 0000000000..8aa6cb53f0 --- /dev/null +++ b/testing/camlp4/APKBUILD @@ -0,0 +1,36 @@ +# Contributor: Jon Ong <jonongjs@rottenmage.com> +# Maintainer: +pkgname=camlp4 +pkgver=4.03 +_versuffix='+1' +pkgrel=0 +pkgdesc="Caml preprocessor and pretty-printer" +url="https://github.com/ocaml/camlp4/releases" +arch="all" +license="GPL2" +depends="ocaml" +makedepends="ocamlbuild" +options="!makeflags !emptydirs staticlibs" +install="" +subpackages="" +source="${pkgver}-${pkgver}${_versuffix}.tar.gz::https://github.com/ocaml/camlp4/archive/${pkgver}${_versuffix}.tar.gz" + +builddir="$srcdir/$pkgname-$pkgver${_versuffix/+/-}" +build() { + cd "$builddir" + + ./configure || return 1 + make -j1 all camlp4/META || return 1 +} + +package() { + cd "$builddir" + + make BINDIR="$pkgdir/usr/bin" \ + LIBDIR="$pkgdir/usr/lib/ocaml" \ + PKGDIR="$pkgdir/usr/lib/ocaml" \ + install install-META || return 1 +} +md5sums="65ece8d2c8f4b1e06d62323e78759a7c 4.03-4.03+1.tar.gz" +sha256sums="6eefeacced81cca59ddf90c2538505fd5cd6596a3fc1acf4971e9796c2e7f2ae 4.03-4.03+1.tar.gz" +sha512sums="0a329e18deffebb5245415f822f91e692076fca4dbe38748f18e72f417ce7354faed744fdff25f9976659192cb02d56ceb2cf1be5c64da463413ec4a28a9d3ac 4.03-4.03+1.tar.gz" |