commit 285a7398a1d7e0116fbe311b1880cb255c6d073d Author: Martin Minka Date: Sat Mar 7 12:12:51 2015 +0100 add maintained repos diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..18a67a4d3038 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,21 @@ +pkgbase = umongo + pkgdesc = This package provides a GUI app that can browse and administer a MongoDB cluster + pkgver = 1.6.2 + pkgrel = 1 + url = http://www.edgytech.com/umongo/ + arch = any + license = GPL + depends = java-runtime + depends = bash + provides = umongo + source = https://s3.amazonaws.com/edgytech/umongo-linux-all_1-6-2.zip + source = umongo.sh + source = umongo.png + source = umongo.desktop + md5sums = 08578467d5ff7851461f184dd68dfdb8 + md5sums = 9a060f5049875f2c7d174f6490185927 + md5sums = 4f2e531c9f804dcd389fc356d11d2687 + md5sums = 0c4db4a65e2455e7a73cc143b342e317 + +pkgname = umongo + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..3e7407217eae --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,38 @@ +# Maintainer: Martin Minka +# Contributor: Guy de Pourtalès +# Contributor: Martin Minka + +pkgname=umongo +pkgver=1.6.2 +_pkgver=1-6-2 +pkgrel=1 +pkgdesc="This package provides a GUI app that can browse and administer a MongoDB cluster" +arch=('any') +url="http://www.edgytech.com/umongo/" +license=('GPL') +depends=('java-runtime' 'bash') +provides=('umongo') +source=(https://s3.amazonaws.com/edgytech/umongo-linux-all_$_pkgver.zip $pkgname.sh $pkgname.png $pkgname.desktop) +md5sums=('08578467d5ff7851461f184dd68dfdb8' + '9a060f5049875f2c7d174f6490185927' + '4f2e531c9f804dcd389fc356d11d2687' + '0c4db4a65e2455e7a73cc143b342e317') + + +package() { + cd $srcdir + install -d -m755 $pkgdir/usr/{bin,share/{$pkgname,pixmaps,applications}} + cp -R $srcdir/umongo-linux-all_$_pkgver/* $pkgdir/usr/share/$pkgname/ + install -m755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname.sh + + mkdir $pkgdir/usr/share/$pkgname/conf + chmod 777 $pkgdir/usr/share/$pkgname/conf + mkdir $pkgdir/usr/share/$pkgname/xml + chmod 777 $pkgdir/usr/share/$pkgname/xml + + install -m644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png + install -m644 $srcdir/$pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop + + rm -f $pkgdir/usr/share/$pkgname/{*.zip,*.png,*.desktop} + +} diff --git a/umongo.desktop b/umongo.desktop new file mode 100644 index 000000000000..1fb8a39d770a --- /dev/null +++ b/umongo.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Name=umongo +Comment=UMongo is a GUI app that can browse and administer a MongoDB cluster +Exec=/usr/bin/umongo.sh +Icon=/usr/share/pixmaps/umongo.png +Terminal=false +Type=Application +Categories=Application;Database; \ No newline at end of file diff --git a/umongo.png b/umongo.png new file mode 100644 index 000000000000..2f46e7e50ccf Binary files /dev/null and b/umongo.png differ diff --git a/umongo.sh b/umongo.sh new file mode 100644 index 000000000000..5bdbaffd51c0 --- /dev/null +++ b/umongo.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +/usr/share/umongo/launch-umongo.sh \ No newline at end of file