Re: [aur-general] Please delete masterm package

2010-08-25 Thread Marq Schneider
On Tue, Aug 24, 2010 at 22:30, Marq Schneider  wrote:
> Apparently masterm fell off the face of the Earth - sourceforge page
> no longer exists and Google searches produce nothing.  Would someone
> be so kind as to remove masterm [0] for me?
>
> [0] http://aur.archlinux.org/packages.php?ID=28348

Actually, cancel this request.  I just heard back from the author and
he is now hosting the project on his own [1].  Thanks all for
attempting to research what happened.

[1] http://invernalia.homelinux.net/tracinvernalia/wiki/MasterM


[aur-general] Please delete masterm package

2010-08-24 Thread Marq Schneider
Apparently masterm fell off the face of the Earth - sourceforge page
no longer exists and Google searches produce nothing.  Would someone
be so kind as to remove masterm [0] for me?

[0] http://aur.archlinux.org/packages.php?ID=28348

Thanks,
Marq


[aur-general] Please delete kicad-svn

2010-07-23 Thread Marq Schneider
Kicad recently switched from subversion to bazaar and thus i have
created a new package kicad-bzr to replace kicad-svn .  Would someone
be so kind as to remove kicad-svn [0] for me?

[0] http://aur.archlinux.org/packages.php?ID=18851

Thanks,
Marq


[aur-general] Deletion Request: calibre-ng

2009-12-14 Thread Marq Schneider
To whom it may concern,

While browsing AUR, i noticed that the maintainer of the 'calibre-ng'
package had requested its deletion within the package's comments [0].  Could
one with the capabilities to do so, please delete this package?

Thank you,
Marq

[0] http://aur.archlinux.org/packages.php?ID=29089


Re: [aur-general] java

2009-06-17 Thread Marq Schneider
On Wed, Jun 17, 2009 at 18:09, nathan owe. wrote:
> nathan owe. wrote:
>>
>> this is confusing we need a easier PKGBUILD example for java. here is my
>> pkgbuild so far:
>>
>> /# Contributor: Nathan Owe 
>> pkgname=jpartialdownloader
>> pkgver=1.9
>> pkgrel=1
>> pkgdesc=""
>> arch=('i686' 'x86_64')
>> url=""
>> license=('GPL')
>> groups=()
>> depends=('openjdk6')
>> makedepends=('openjdk6')
>>
>> source=(http://downloads.sourceforge.net/sourceforge/jpd/$pkgname-$pkgver.zip)
>> md5sums=('86b60156ad7b7ac315b2bf9d11ed9841')
>>
>> build() {
>> cd $pkgname-$pkgver
>> mkdir -p "$pkgdir"/usr/share/java/$pkgname
>> cp -rf jpd.jar lib/ logs/ conf/ docs/ ${pkgdir}/usr/share/java/$pkgname/
>> /
>> but it has no run script that i can copy to $pkgdir/usr/bin so how do i do
>> it.
>>
>>
> i've been looking at other's pkgbuild but i am not seeing a way yet.
>

One option is to create a shell script named something like 'jpd' with contents:
#!/bin/bash
java -jar /usr/share/java/jpartialdownloader/jpd.jar $@

and copy that into /usr/bin/ in the PKGBUILD.

Sometimes you have to do things yourself.

By the way, you might want to look into using 'java-environment' or
'java-runtime' for your depends instead of 'openjdk6'.  I'm not sure
which is correct.

-Marq