summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2019-02-12 01:44:36 +0100
committerAndreas Grapentin <andreas@grapentin.org>2019-02-12 01:44:36 +0100
commit5269bb82c6b1c9c3f2775fa1e7367f5d036c92f5 (patch)
tree838b7dfccc408ba2bb89f76c6ae3b809bf9dba21
parent455ca862582aaade8a9bec4389e4274a82c64eb1 (diff)
pcr/ocaml-text: unused. removed
-rw-r--r--pcr/ocaml-text/PKGBUILD36
1 files changed, 0 insertions, 36 deletions
diff --git a/pcr/ocaml-text/PKGBUILD b/pcr/ocaml-text/PKGBUILD
deleted file mode 100644
index d04042d23..000000000
--- a/pcr/ocaml-text/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# Contributor (Arch) : Taylor Venable <taylor@metasyntax.net>
-# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp>
-
-srcname='ocaml-text'
-pkgname="${srcname}"
-pkgver='0.6'
-pkgrel=1.1
-pkgdesc='A library for dealing with text in a convenient way'
-arch=('i686' 'x86_64')
-url='http://forge.ocamlcore.org/projects/ocaml-text/'
-license=('BSD3')
-depends=('ocaml>=3.11.0')
-makedepends=('ocaml-findlib')
-source=('http://forge.ocamlcore.org/frs/download.php/937/ocaml-text-0.6.tar.gz')
-options=('!strip')
-md5sums=('86e4cb5849a01a34c21fad065501d696')
-
-build() {
- cd "$srcdir/${srcname}-${pkgver}"
- ./configure
-
- env DESTDIR="$pkgdir" \
- OCAMLFIND_DESTDIR="$pkgdir/$(ocamlfind printconf destdir)" \
- make
-}
-
-
-package() {
- mkdir -p "$pkgdir/$(ocamlfind printconf destdir)"
- mkdir -p "$pkgdir/$(ocamlfind printconf destdir)/stublibs"
- cd "$srcdir/${srcname}-${pkgver}"
- env DESTDIR="$pkgdir" \
- OCAMLFIND_DESTDIR="$pkgdir/$(ocamlfind printconf destdir)" \
- make install
- install -Dm 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}