add buildfiles for sayVIMS,fixes

This commit is contained in:
niels
2011-04-25 13:44:14 +02:00
parent d7f67daf12
commit 92e866ba80
5 changed files with 48 additions and 3 deletions

View File

@@ -4,12 +4,12 @@ pkgname=reloaded
pkgrel=1
pkgver=1.5.9
pkgdesc="Reloaded is the graphical user interface for Veejay"
arch=('i686','x86_64')
arch=('i686' 'x86_64')
url="http://www.veejayhq.net"
license=('GPL')
groups=()
conflicts=('reloaded')
depends=('libxml2' 'libveejay' 'gtk2' 'glib2' 'glade' 'alsa' )
depends=('libxml2' 'veejay' 'gtk2' 'glib2' 'glade' 'alsa-lib' )
optdepends=()
source=()
md5sums=()

View File

@@ -5,4 +5,8 @@
# you may have to create the m4 directory yourself
#
if [ ! -d m4 ]; then
mkdir m4
fi
autoreconf -v -fi -I m4

View File

@@ -4,5 +4,8 @@
# if you use autoconf 2.64 or earlier,
# you may have to create the m4 directory yourself
#
if [ ! -d m4 ]; then
mkdir m4
fi
autoreconf -v -fi -I m4

View File

@@ -0,0 +1,31 @@
# Contributor: Luciano A. Ferrer <laferrer@gmail.com>
# Modified for ArchLinux by Niels <nwelburg@gmail.com>
pkgname=sayVIMS
pkgrel=1
pkgver=1.5.9
pkgdesc="sayVIMS is the commandline utility for veejay remote-access"
arch=('i686' 'x86_64')
url="http://www.veejayhq.net"
license=('GPL')
groups=()
conflicts=('sayVIMS')
depends=( 'veejay' )
optdepends=()
source=()
md5sums=()
changelog=('ChangeLog')
backup=()
replaces=()
build() {
export PKG_CONFIG_PATH=/usr/lib/pkgconfig
cd $startdir
./autogen.sh
./configure --prefix=/usr
make || return 1
}
package() {
cd $startdir
make DESTDIR="$pkgdir/" install
}

View File

@@ -1,5 +1,12 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
# if you use autoconf 2.64 or earlier,
# you may have to create the m4 directory yourself
#
autoreconf -v -f -i
if [ ! -d m4 ]; then
mkdir m4
fi
autoreconf -v -fi -I m4