summaryrefslogtreecommitdiff
path: root/community/camlp5/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-05-05 02:43:51 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-05-05 02:43:51 -0300
commit61b68fb9fca39dda7e4b48c5af9567dc60ea3dd2 (patch)
tree6b8b6fb14ede5aae651e92f593252dba143cee74 /community/camlp5/PKGBUILD
parentca998b4c054452abed4e01be1d2b28fee0ca904f (diff)
parent5801c5acd80d30d17aaef76b8bc401c61b3ef3c9 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/camlp5/PKGBUILD community/coq/PKGBUILD community/ldns/PKGBUILD community/luxrays/PKGBUILD community/luxrender/PKGBUILD community/nut/PKGBUILD community/root/PKGBUILD community/swi-prolog/PKGBUILD community/vtk/PKGBUILD community/wings3d/wings3d.sh core/sqlite3/PKGBUILD core/tzdata/PKGBUILD extra/cmus/PKGBUILD extra/dcron/PKGBUILD extra/farsight2/PKGBUILD extra/foomatic/PKGBUILD extra/fwbuilder/PKGBUILD extra/gnome-utils/PKGBUILD extra/ivtv-utils/PKGBUILD extra/kdebase-konsole/PKGBUILD extra/kdenetwork/PKGBUILD extra/kdesdk/PKGBUILD extra/koffice/PKGBUILD extra/libxfce4menu/PKGBUILD extra/openmpi/PKGBUILD extra/telepathy-butterfly/PKGBUILD extra/telepathy-farsight/PKGBUILD extra/telepathy-kde-presence-dataengine/PKGBUILD extra/telepathy-qt4/PKGBUILD extra/xfce-utils/PKGBUILD extra/xulrunner/PKGBUILD multilib/lib32-zlib/PKGBUILD staging/gimp-devel/gimp-devel.install testing/gtk3/PKGBUILD testing/php/PKGBUILD ~xihh/couchdb-git/couchdb.install ~xihh/couchdb-git/rc-script.patch ~xihh/gmime24/PKGBUILD
Diffstat (limited to 'community/camlp5/PKGBUILD')
-rw-r--r--community/camlp5/PKGBUILD75
1 files changed, 0 insertions, 75 deletions
diff --git a/community/camlp5/PKGBUILD b/community/camlp5/PKGBUILD
deleted file mode 100644
index e4577bd84..000000000
--- a/community/camlp5/PKGBUILD
+++ /dev/null
@@ -1,75 +0,0 @@
-# Maintainer: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Nathan Owe <ndowens.aur at gmail dot com>
-# Contributor: George Giorgidze <giorgidze@gmail.com>
-# Contributor: Massimiliano Brocchini <brocchini@netseven.it>
-
-pkgname=('camlp5' 'camlp5-transitional')
-_baseversion=6.05
-_patchlevel=0
-#pkgver=${_baseversion}.${_patchlevel}
-pkgver=${_baseversion}
-pkgrel=1
-arch=('i686' 'x86_64' 'mips64el')
-url='http://pauillac.inria.fr/~ddr/camlp5/'
-license=('BSD')
-depends=('ocaml')
-source=("http://pauillac.inria.fr/~ddr/camlp5/distrib/src/camlp5-${_baseversion}.tgz")
-# upstream likes to release occasional patches instead of releasing new versions
-for i in $(seq ${_patchlevel}); do
- source+=("http://pauillac.inria.fr/~ddr/camlp5/distrib/src/patch-${_baseversion}-${i}")
-done
-md5sums=('51e333f027ead70aa1b0cd7993320e24')
-
-build() {
- cd camlp5-${_baseversion}
-
- for i in $(seq ${_patchlevel}); do
- patch -Np0 -i ${srcdir}/patch-${_baseversion}-${i}
- done
-
- cd ${srcdir}
-
- cp -r camlp5-${_baseversion} camlp5-transitional-${_baseversion}
-
- cd ${srcdir}/camlp5-${_baseversion}
-
- ./configure \
- -prefix '/usr' \
- -mandir '/usr/share/man' \
- -strict
-
- make world.opt
-
- cd ${srcdir}/camlp5-transitional-${_baseversion}
-
- ./configure \
- -prefix '/usr' \
- -mandir '/usr/share/man' \
- -transitional
-
- make world.opt
-}
-
-package_camlp5() {
- pkgdesc='A preprocessor-pretty-printer of OCaml.'
- conflicts=('camlp5-transitional')
-
- cd camlp5-${_baseversion}
-
- make DESTDIR=${pkgdir} install
-
- install -D -m644 LICENSE \
- ${pkgdir}/usr/share/licenses/camlp5/LICENSE
-}
-
-package_camlp5-transitional() {
- pkgdesc='A preprocessor-pretty-printer of OCaml. (transitional)'
- conflicts=('camlp5')
-
- cd camlp5-transitional-${_baseversion}
-
- make DESTDIR=${pkgdir} install
-
- install -D -m644 LICENSE \
- ${pkgdir}/usr/share/licenses/camlp5-transitional/LICENSE
-}