mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-05 15:30:02 +01:00
add buildfiles for sayVIMS,fixes
This commit is contained in:
@@ -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=()
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
31
veejay-current/veejay-utils/PKGBUILD
Normal file
31
veejay-current/veejay-utils/PKGBUILD
Normal 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
|
||||
}
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user