mirror of
https://github.com/archlinux/aur.git
synced 2026-02-13 20:13:31 +01:00
add maintained repos
This commit is contained in:
commit
285a7398a1
5 changed files with 70 additions and 0 deletions
21
.SRCINFO
Normal file
21
.SRCINFO
Normal file
|
|
@ -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
|
||||
|
||||
38
PKGBUILD
Normal file
38
PKGBUILD
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# Maintainer: Martin Minka <martin.minka+arch@gmail.com>
|
||||
# Contributor: Guy de Pourtalès <guy at gadp dot ch>
|
||||
# Contributor: Martin Minka <martin.minka+arch@gmail.com>
|
||||
|
||||
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}
|
||||
|
||||
}
|
||||
8
umongo.desktop
Normal file
8
umongo.desktop
Normal file
|
|
@ -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;
|
||||
BIN
umongo.png
Normal file
BIN
umongo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
3
umongo.sh
Normal file
3
umongo.sh
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
/usr/share/umongo/launch-umongo.sh
|
||||
Loading…
Add table
Reference in a new issue