root/pbibuild/modules/bmpx/pbi.conf

Revision 2319, 1.4 kB (checked in by kris, 2 months ago)

Fixed the build of bmpx

  • Property svn:executable set to *
Line 
1#!/bin/bash
2# PBI Building template
3# Copyright 2007 PC-BSD Software
4##############################################################################
5
6# Program Name
7PROGNAME="BMPx"
8
9# Program Website
10PROGWEB="http://beep-media-player.org/"
11
12# Program Author
13PROGAUTHOR="The BMPx Team"
14
15# Default Icon (Relative to overlay-dir)
16PROGICON="share/bmpx/icons/themes/red/icon_player_128.png"
17
18# Port we want to build
19PBIPORT="/usr/ports/multimedia/bmpx/"
20
21# Set to "Auto or NONE" to have the PBI creator auto-populate libs or not
22PROGLIBS="Auto"
23
24# PBI Update URL set to "" or the http:// URL of update checker
25PBIUPDATE="http://update.pbidir.com"
26
27# Other Ports we need built (One per line)
28OTHERPORT="/usr/ports/audio/flac
29/usr/ports/audio/openspc
30/usr/ports/audio/gstreamer-plugins-lame
31/usr/ports/audio/gstreamer-plugins-a52dec
32/usr/ports/audio/gstreamer-plugins-fluendo-mp3
33/usr/ports/audio/gstreamer-plugins-faad
34/usr/ports/audio/gstreamer-plugins-flac
35/usr/ports/multimedia/gstreamer-ffmpeg"
36
37# Enter your custom make options here
38MAKEOPTS="PREFIX=/Programs/BMPx
39WITH_HAL=yes"
40
41# Build Key - Change this to anything else to trigger a rebuild
42#           - The rebuild will take place even if port is still the same ver
43BUILDKEY="16"
44
45# Don't build this PBI on certian processors (i386 / amd64)
46ARCHIGNORE="amd64" ; export ARCHIGNORE
47
48export PBIPORT MAKEOPTS PROGNAME PROGWEB PROGAUTHOR OTHERPORT PROGICON PROGLIBS PBIUPDATE BUILDKEY
Note: See TracBrowser for help on using the browser.