Update and fix raptor

This commit is contained in:
Manuel 2011-08-20 11:02:50 +00:00
parent 05a2537886
commit 0ad2a3f731
2 changed files with 12 additions and 9 deletions

View File

@ -8,7 +8,7 @@
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=jre
pkgver=6u22
pkgver=6u26
pkgrel=1
pkgdesc="Sun's java runtime environment"
arch=('i686' 'x86_64')
@ -18,14 +18,14 @@ url="http://java.sun.com"
depends=('glibc' 'libxtst')
install="jre.install"
source=(http://download.java.net/dlj/binaries/jdk-${pkgver}-dlj-linux-$ARCH.bin
https://jdk-distros.dev.java.net/source/browse/*checkout*/jdk-distros/trunk/utils/construct.sh
http://java.net/projects/jdk-distros/sources/svn/content/trunk/utils/construct.sh?raw=true
jre.profile)
[ "$CARCH" = "i686" ] && md5sums=('2204fea1b2593f3cc196a0a92b80b18f'
'94065b612df0046d9ae758943f9f6a75'
'50b4f5ac4129097461d246645d73a622')
[ "$CARCH" = "x86_64" ] && md5sums=('e5e102ef16d8938f547fe2a73e659608'
'94065b612df0046d9ae758943f9f6a75'
'50b4f5ac4129097461d246645d73a622')
[ "$CARCH" = "x86_64" ] && md5sums=('43f4e9699afce82d3ebae841c59d02fb'
'94065b612df0046d9ae758943f9f6a75'
'50b4f5ac4129097461d246645d73a622')
replaces=('j2re')
conflicts=('j2re' 'java-runtime')
provides=('j2re' 'java-runtime=6')
@ -34,6 +34,8 @@ license=('custom')
build() {
cd ${srcdir}
mv construct.sh?raw=true construct.sh
mkdir unbundle-jdk
cd unbundle-jdk
@ -41,7 +43,7 @@ build() {
cd ..
sh construct.sh unbundle-jdk linux-jdk linux-jre
sh ./construct.sh unbundle-jdk linux-jdk linux-jre
}
package() {

View File

@ -8,7 +8,7 @@
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=rosegarden
pkgver=10.04
pkgver=11.06
pkgrel=1
pkgdesc="MIDI/audio sequencer and notation editor"
arch=('i686' 'x86_64')
@ -27,11 +27,13 @@ optdepends=('lilypond: notation display'
'dssi-vst: win32 VST support')
install=$pkgname.install
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
md5sums=('b25f2f629f31ecf24b84db3ccbe555c9')
md5sums=('77ab43d06de53ace338843ff82e26288')
build() {
cd "$srcdir/$pkgname-$pkgver"
# lrdf + raptor2 compatibility
export lrdf_CFLAGS="$(pkg-config --cflags raptor2)"
./configure --prefix=/usr
make
}
@ -42,4 +44,3 @@ package() {
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et: