"build" section in PKGBUILD files.

I've noticed that the build section for some programs are different from others, I assume this means that without that proper distinctive build part, the file won't compile and a package won't be made.  So my question is how do you tell if a program needs an irregular build section?  For instance,
# $Id: PKGBUILD,v 1.80 2005/07/10 19:53:19 jgc Exp $
# Contributor: Lucien Immink <[email protected]>
# Maintainer: dorphell <[email protected]>
pkgname=gaim
pkgver=1.4.0
pkgrel=1
pkgdesc="A GTK+-based messaging client"
url="http://gaim.sourceforge.net"
depends=('startup-notification' 'libao' 'gnutls>=1.2.0' 'tk' 'gtkspell')
source=(http://dl.sourceforge.net/sourceforge/gaim/gaim-$pkgver.tar.bz2)
md5sums=('d7717cb771e556012ecd5b7f3bdb02ba')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr --enable-gtkspell --enable-gnutls=yes --enable-nss=no --disable-gevolution
make || return 1
make DESTDIR=$startdir/pkg install
rm $startdir/pkg/usr/lib/perl5/*/$CARCH-linux-thread-multi/perllocal.pod
mv $startdir/pkg/usr/lib/perl5/?.?.? $startdir/pkg/usr/lib/perl5/current
would be an irregular entry
I know there's some kind of regular build entry, but I can't find it.
reid

hotsock wrote:I know there's some kind of regular build entry, but I can't find it.
If you run
# abs
as root, you'll get a template PKGBUILD:
/var/abs/PKGBUILD.proto
It has what could be called a regular build entry.

Similar Messages

  • [Solved]Do you need just a PKGBUILD file to install an AUR app?

    I've long wondered whether or not one needs to actually download a tarball in order to build a package from the AUR.  Some people have posted here on the forum that all you need to do is download the PKGBUILD file and run "makepkg -i PKGBUILD."
    I have tried this a few times but everytime I had to download the tarball or I got an error when I run "makepkg."  IE, the last error I got was "(app name's) install file doesn't exist."  Am I just fundamentally stupid or ignorant?  I have looked at the wiki pages for the docs about the AUR and the "make your own packages" page as well as the makepkg page.  I have yet to see where in those pages it says you can just use the PKGBUILD file alone. 
    MS
    Last edited by MoonSwan (2012-07-25 20:43:31)

    https://wiki.archlinux.org/index.php/AU … g_packages
    Was this not clear enough?
    Here's a neat trick: place the following in /etc/bash.bashrc (or ~/.bashrc, if you want) and then restart the terminal.
    alias e='nano -x'
    # For AUR packages
    ia() {
    cd ~/.builds
    wget -q "https://aur.archlinux.org/packages/${1:0:2}/$1/$1.tar.gz"
    tar xf "$1.tar.gz"
    rm "$1.tar.gz"
    cd $1
    ls
    alias m='makepkg -s'
    alias I='sudo pacman -U'
    alias Ii='sudo pacman -U *.xz'
    Then, to install, say, bloboats you can just type:
    $ ia bloboats
    $ e PKGB[press Tab]
    <see that it's all good and no "rm -rf /" anywhere (lol), which implies at least a basic understanding of how scripting works>
    $ m
    $ Ii
    $ bloboats
    Have fun.
    PS: This method is better than using some AUR helper; at least you're aware of what you're installing. And with minimal typing.
    Last edited by DSpider (2012-07-25 19:53:11)

  • "no manifiest section for signature file entry" when run the Jar file

    I built an application by using JBuilder 8.0 and it works fine. But when I deploy it into a jar file, whenever I run it, the following exception appears:
    Exception in thread "main" java.lang.SecurityException: no manifiest section for signature file entry javax/security/cert/Certificate.class
    at sun.securtiy.util.SignatureFileVerifier.verifySection
    Because I didn't do anything about the security when build the application. I am really confused. Can somebody help?

    I had a similiar problem using NetBeans. There must be a way to view the properties of your jar from Jbuilder and set its manifest. I am very new to this myself, but all I did was edit another manifest and copied into mine. Here is my example manifest:
    Manifest-Version: 1.0
    Main-Class: J3Ed
    The first line is the default line for a manifest. It is very simple and there is much more that could be added, but is not always necessary. I recommend reading the documentation :
    http://developer.java.sun.com/developer/Books/javaprogramming/JAR/basics/manifest.html
    Also if you have an archiving utility such as powerarchiver or winzip, open your JAR and check to see that you have a MANIFEST.MF file. If you do then edit it where needed, if not create one and its relative location should be set to META-INF/MANIFEST.MF.
    Hope this helps.

  • Making a PKGBUILD file for EQC (A LaTeX Equation Compiler)

    Hi everyone,
    Just yesterday I was searching in the web for some alternative to Mathcad (a useful program to make calculations the "engineering-way"), when I found this great software developed by Jan Rheinländer, which in essence, lets you do the same as Mathcad, but using Latex (very beautiful).
    So I decided to make a PKGBUILD, so other people could install it easily. The problem is, that this is my first PKGBUILD file and I have been having problems making it to work.
    Here is the code I have:
    # PKGBUILD for EQC: Latex Equation Compiler
    # Contributor: Cristóbal Tapia <[email protected]>
    pkgname=eqc
    pkgver=20130112
    pkgrel=1
    pkgdesc="A preprocessor for LaTeX files that enables numeric and symbolic calculations"
    arch=('x86_64' 'i686')
    url="http://eqc.sourceforge.net/wiki/index.php/Main_Page"
    license="(L)GPL"
    depends=('ginac' 'cln' 'gmp' 'flex' 'bison' 'texlive-science' 'texlive-pstricks')
    source=()
    _svntrunk="https://eqc.svn.sourceforge.net/svnroot/eqc"
    _eqcsrc="eqc_src"
    build() {
    cd $srcdir
    msg2 "Connecting to Sourceforge server...."
    svn co $_svntrunk $_eqcsrc --config-dir ./ -r '{'$_pkgver'}'
    cd $_eqcsrc
    ./configure
    make
    make install
    package() {
    Can anyone help me a little please?
    Thanks!
    Edit: here is the link to the wiki of the project: http://eqc.sourceforge.net/wiki/index.php/Main_Page
    Last edited by tapia (2013-04-17 03:12:08)

    Hello again!
    I have finally done this. It works for me, so I would like to know if it works for somebody else or if there is any dependency problem.
    PKGBUILD:
    # PKGBUILD for EQC: Latex Equation Compiler
    # Maintainer: Cristóbal Tapia <crtapia a gmail com>
    pkgname=eqc
    pkgrel=1
    pkgver=48
    pkgdesc="A preprocessor for LaTeX files that enables numeric and symbolic calculations"
    arch=('x86_64' 'i686')
    url="http://eqc.sourceforge.net/wiki/index.php/Main_Page"
    license="(L)GPL"
    depends=('subversion' 'ginac' 'cln' 'gmp' 'flex' 'bison' 'texlive-science' 'texlive-pstricks' 'linuxdoc-tools')
    source=(svn+svn://svn.code.sf.net/p/eqc/code)
    md5sums=('SKIP')
    install='eqc-svn.install'
    pkgver() {
    cd $srcdir/code
    svnversion | tr -d [A-z]
    build() {
    cd $srcdir/code
    ./configure
    make
    package() {
    cd $srcdir/code
    make DESTDIR="$pkgdir" install
    eqc-svn.intall:
    post_install() {
    texhash
    post_upgrade() {
    texhash
    post_remove() {
    texhash

  • Pkgbuild file for mit/gnu scheme

    Here is a package build file I made for mit-scheme. This is my first PKGBUILD file, so let me know if I did anything wrong or that should be changed. Note the source line should be all one line with no carriage returns.
    # $Id: PKGBUILD,v 1.0 2004/06/21 20:29:00 fbidwell Exp $
    # Maintainer: fbidwell <[email protected]>
    pkgname=mit-scheme
    pkgver=7.7.90
    pkgrel=1
    pkgdesc="MIT GNU Scheme Programming Language"
    url="http://www.gnu.org/software/mit-scheme/index.html"
    makedepends=('gcc')
    depends=('xfree86' 'glibc' 'ncurses')
    source=(ftp://ftp.gnu.org/gnu/mit-scheme/testing.pkg/$pkgver/$pkgname-$pkgver-uc
    ode.tar.gz ftp://ftp.gnu.org/gnu/mit-scheme/testing.pkg/$pkgver/$pkgname-$pkgver
    -ix86-gnu-linux.tar.gz mit-scheme.patch)
    build() {
    cd $startdir/src/$pkgname-$pkgver
    patch -Np1 -i ../mit-scheme.patch
    cd src/microcode
    ./configure --prefix=/usr
    make || return 1
    cd ../../..
    pwd
    cp -fp $pkgname-$pkgver/src/microcode/scheme bin/.
    cp -fp $pkgname-$pkgver/src/microcode/bchscheme bin/.
    mkdir -p $startdir/pkg/usr/{bin,lib/mit-scheme}
    cp bin/* $startdir/pkg/usr/bin/.
    cp -r lib/mit-scheme/* $startdir/pkg/usr/lib/mit-scheme/.
    md5sums=('c068a2a8c841ded2d478ae1e6e868960' 'f109131a183f991793531ce62052a16b'
    '63933e159094431825a54b218a66e9b0')
    Here is the patch to make it compile
    --- mit-scheme-7.7.90/src/microcode-orig/uxio.c 2004-06-23 01:13:58.000000000 -0
    400
    +++ mit-scheme-7.7.90/src/microcode/uxio.c 2004-06-23 01:13:15.000000000 -0
    400
    @@ -240,11 +240,7 @@
    return ((scr < 0) ? 0 : scr);
    -#ifdef _POSIX
    #include <string.h>
    -#else
    -extern int EXFUN (strlen, (CONST char *));
    -#endif
    void
    DEFUN (OS_channel_write_string, (channel, string),

    Thanks for posting the build file! However, it seems that the patch didn't pass the checksum.
    ==> Making package: mit-scheme 7.7.90-1 (Fri Oct 7 03:04:56 PDT 2005)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    ==> Using local copy of mit-scheme-7.7.90-ucode.tar.gz
    ==> Using local copy of mit-scheme-7.7.90-ix86-gnu-linux.tar.gz
    ==> Found mit-scheme.patch in build dir
    ==> Validating source files with MD5sums
    mit-scheme-7.7.90-ucode.tar.gz ... Passed
    mit-scheme-7.7.90-ix86-gnu-linux.tar.gz ... Passed
    mit-scheme.patch ... FAILED
    ==> ERROR: One or more files did not pass the validity check!
    I copied the patch content verbatim from the parent post.  I bypassed the checksum in PKGBUILD to get it to start compiling, but a proper solution would be appreiciated.
    Also I get the following when compiling:
    option.c: In function 'parse_path_string':
    option.c:830: error: invalid lvalue in increment
    option.c:830: warning: value computed is not used
    option.c:852: error: invalid lvalue in increment
    option.c:852: warning: value computed is not used
    option.c:859: error: invalid lvalue in increment
    option.c:859: warning: value computed is not used
    make: *** [option.o] Error 1
    I'm using gcc 4.0.2 .
    By the way, I did remove the unnecessary carriage returns.
    Thanks!
    Will

  • How do I tell FMS to only serve a section of a file using server-side ActionScript?

    We have a bunch of mp3 files on our server and we'd like to serve only particular sections of particular files to users.  For example, hello.mp3 might be four minutes long, but when user 1 tries to play it, he should only be able to play the section from 0:30 to 1:00, whereas user 2 should be able to play the whole thing.
    I'm coming from a background using Wowza Media Server, where this is fairly easy to achieve: http://fmsguru.com/showtutorial.cfm?tutorialID=78.
    Wowza doesn't require any change to the player (it doesn't call any special methods), so I'm looking for the same here.
    I've been fiddling around with the main.asc file and the "Server-Side ActionScript" API to try and achieve something similar.  In particular I've found the Stream.play method, which seems relevant.  But I can't figure out how to attach a handler to a "play" event; all the examples I've seen only attach to Application.onConnect, which doesn't seem to include a connection to a particular file, which I need in order to determine the section that can be played.
    So I'd like to do something along the lines of this (this is completely made up and doesn't follow any of the APIs; it's just an illustration of what I'm trying to achieve):
    application.onConnect = function(client) {
       client.onPlay = function(stream) { // Client.onPlay doesn't exist; what should I do here?
           var section = getStreamSection(client, stream);
           stream.play(section.start, section.end);
    var getStreamSection = function(client, stream) {
       return { start: 30, end: 60 }; // Return value is based on the user's credentials and the file they're trying to stream

    You can find the documentation for Plug-ins here:
    http://help.adobe.com/en_US/flashmediaserver/plugin_apiref/index.html
    http://help.adobe.com/en_US/flashmediaserver/devguide/WS5b3ccc516d4fbf351e63e3d11a0d662434 -7ff6PluginAPI.html
    Basically you need to concentrate on E_PLAY event and two fields F_STREAM_LENGTH & F_STREAM_POSITION. I am pasting below some code which you need to paste in your sample Auth Plug-in which you can find in : <installdir>/samples/plug-ins. You would have paste below code in case E_PLAY section in MyFmsAuthorizeEvent::authorize() function and compile it. You would basically get AuthModule.dll which you need to place in modules/auth and restart FMS.
    // Set the Stream to be played back only for 10 seconds starting from 10 th second
                                  // Stream will play from 10th Second to 20th Second
                                     float fValue;
                                  char buf[1024];
                                  if (getFloatField(m_pAev, IFmsAuthEvent::F_STREAM_LENGTH, fValue))
                                            float fLength = fValue; // in seconds
                                            sprintf(buf,"Original Stream length value passed from player %f\n",fLength);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            fLength=10.0;
                                            sprintf(buf,"Modifying Stream length value passed from player %f\n",fLength);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            setFloatField(m_pAev,IFmsAuthEvent::F_STREAM_LENGTH,fLength);
                                  if (getFloatField(m_pAev, IFmsAuthEvent::F_STREAM_POSITION, fValue))
                                            float iPosition = fValue; // in seconds
                                            sprintf(buf,"Original Stream Position value passed from player %f\n",iPosition);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            iPosition=10.0;
                                            sprintf(buf,"Modifying Stream length value passed from player %f\n",iPosition);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            setFloatField(m_pAev,IFmsAuthEvent::F_STREAM_POSITION,iPosition);

  • [svn] 3638: Changing the build order of swc file update with dita xml files .

    Revision: 3638
    Author: [email protected]
    Date: 2008-10-14 16:49:56 -0700 (Tue, 14 Oct 2008)
    Log Message:
    Changing the build order of swc file update with dita xml files.
    By default this would now happen during the checkintests target - so "ant clean main" shouldn't get affected.
    To opt out use -Dno.doc=true
    QA: No
    Doc: No
    Tests: checkintests
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/frameworks/build.xml
    flex/sdk/trunk/frameworks/projects/airframework/build.xml
    flex/sdk/trunk/frameworks/projects/flash-integration/build.xml
    flex/sdk/trunk/frameworks/projects/flex/build.xml
    flex/sdk/trunk/frameworks/projects/flex4/build.xml
    flex/sdk/trunk/frameworks/projects/framework/build.xml
    flex/sdk/trunk/frameworks/projects/haloclassic/build.xml
    flex/sdk/trunk/frameworks/projects/rpc/build.xml
    flex/sdk/trunk/frameworks/projects/utilities/build.xml

    Revision: 3638
    Author: [email protected]
    Date: 2008-10-14 16:49:56 -0700 (Tue, 14 Oct 2008)
    Log Message:
    Changing the build order of swc file update with dita xml files.
    By default this would now happen during the checkintests target - so "ant clean main" shouldn't get affected.
    To opt out use -Dno.doc=true
    QA: No
    Doc: No
    Tests: checkintests
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/frameworks/build.xml
    flex/sdk/trunk/frameworks/projects/airframework/build.xml
    flex/sdk/trunk/frameworks/projects/flash-integration/build.xml
    flex/sdk/trunk/frameworks/projects/flex/build.xml
    flex/sdk/trunk/frameworks/projects/flex4/build.xml
    flex/sdk/trunk/frameworks/projects/framework/build.xml
    flex/sdk/trunk/frameworks/projects/haloclassic/build.xml
    flex/sdk/trunk/frameworks/projects/rpc/build.xml
    flex/sdk/trunk/frameworks/projects/utilities/build.xml

  • The preview build section is not available in normal PC Settings. How can i get it?

    the preview build section is not available in normal PC Settings. How can i get it?
    How do i update to new build HELP Please

    Thanks Jerry’s suggestion, I extract this update link here:
    This update includes improvements to Windows 10 Technical Preview Build 9879 that will let members of the Windows Insider Program continue to receive future released builds of Technical Preview.
    http://support2.microsoft.com/kb/3025380/en-us
    Alex Zhao
    TechNet Community Support

  • Preview Build Section gone from Windows Tech Preview

    So, I noticed that after updating to Windows Tech Preview Build 9860, the preview build section is gone from my settings in zPC settings. Is this a glitch or did Microsoft temporally remove it? Thanks.

    It's there, you're just not looking in the right place.
    There are two settings Apps - PC Settings and zPC Settings.
    Look in PC Settings, under
    Update and recovery.  The Preview builds section is there in build 9860.
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • Where are old PKGBUILD files?

    I need to recompile the i586 architecture, the following packages:
    -Device-mapper-2.1.1933-1
    -Kilbc-01.05.1915-3
    -Klibc-extras-2.5-4
    -Klibc-kbd-1.15.20080312-10
    -Klibc-module-init-tools-3.8-1
    -Klibc-udev-141-3
    -Openswan-04.02.1914-1
    -Procinfo-19-3
    -Wlan-ng26-utils-0.2.9-1
    Why is removed, some old PKGBUILD files in the distribution Arch linux?

    device-mapper still in core version 2.02.66-1
    klibc* deprecated by mkinitcipio-busybox: http://www.archlinux.org/news/486/
    procinfo replaced by procinfo-ng
    wlan-ng26-utils obsolete, removed from repos: http://bugs.archlinux.org/task/12979
    openswan lack of interest, moved in aur: http://mailman.archlinux.org/pipermail/ … 14060.html
    Last edited by wonder (2010-06-03 14:53:12)

  • No manifiest section for signature file entry iaik/utils/IaikSecurity.class

    Why I got this exception when running my jar with:
    java -jar My.jar
    Exception:
    Exception in thread "main" java.lang.SecurityException: no manifiest section for signature file entry iaik/utils/IaikSecurity.class
    at sun.security.util.SignatureFileVerifier.verifySection(SignatureFileVerifier.java:260)
    at sun.security.util.SignatureFileVerifier.process(SignatureFileVerifier.java:172)
    at java.util.jar.JarVerifier.processEntry(JarVerifier.java:239)
    at java.util.jar.JarVerifier.update(JarVerifier.java:194)
    at java.util.jar.JarFile.initializeVerifier(JarFile.java:300)
    at java.util.jar.JarFile.getInputStream(JarFile.java:362)
    at sun.misc.URLClassPath$5.getInputStream(URLClassPath.java:616)
    at sun.misc.Resource.getBytes(Resource.java:57)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:248)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)

    his link contains tools for jar and signiture, maybe it helps
    http://www.syncedit.com/jedit_details.html
    it is very interesting

  • No manifiest section for signature file entry net/sf/acegisecurity/LockedE

    Hi,
    I am facing one problem when I try to execute jar file.
    Our requirement is to generate one jar file which will run our product. We have some dependent jarfiles like j2ee.jar, log4J.jar Spring.jar etc��
    I extracted all the above mentioned jars in to one common folder along with my code and created the new jar file. This new jar file have MANIFIST file with Main-Class: com.fmr.dcl.Cds.DclUi
    When I try to run new jar file on commandprompt (java -jar NewJar.jar) I am getting some security Exception.
    Exception in thread "main" java.lang.SecurityException: no manifiest section for signature file entry net/sf/acegisecurity/LockedException.class
    at sun.security.util.SignatureFileVerifier.verifySection(Unknown Source)
    at sun.security.util.SignatureFileVerifier.process0(Unknown Source)
    at sun.security.util.SignatureFileVerifier.process(Unknown Source)
    at java.util.jar.JarVerifier.processEntry(Unknown Source)
    at java.util.jar.JarVerifier.update(Unknown Source)
    at java.util.jar.JarFile.initializeVerifier(Unknown Source)
    at java.util.jar.JarFile.getInputStream(Unknown Source)
    at sun.misc.URLClassPath$5.getInputStream(Unknown Source)
    at sun.misc.Resource.getBytes(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    Ashok

    his link contains tools for jar and signiture, maybe it helps
    http://www.syncedit.com/jedit_details.html
    it is very interesting

  • Deploying manually CC PKG file built with CC Packager. Not using any third party deployment tool. However after each 5 installations, the PKG files corrupt and cannot be use for a 6th installation. I have to build a new PKG file using CC packager.  Why ?

    Deploying manually CC PKG file built with CC Packager. Not using any third party deployment tool. However after each 5 installations, the PKG files corrupt and cannot be use for a 6th installation. I have to build a new PKG file using CC packager.  Why ?

    http://helpx.adobe.com/creative-cloud/packager.html
    http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent

  • A problem happened when building dimensions with Rule File

    Hi All,
    I was trying to build dimensions with the rule file. But it showed the error 1030100, which means "cannot open file".
    I can load data with a data source (.txt). Thus, I assumed that it's a problem to open a rule file.
    I don't think it's the problem about the rule files I wrote since I cannot even build dimensions with rule files in the Sample/Basic database.
    Anyone knows how to solve the problem? Thanks for the help.
    Best Regards,
    Anderson

    854285 wrote:
    Hi Prebhas,
    Here are the error messages:
    Object [Basic] is locked by user [admin]
    Building Dimensions Elapsed Time: [0.016] seconds
    Cannot open file: [E:\Hyperion\products\Essbase\eas\Client\dataload.err]
    Unexpected Essbase error 1030100
    Object [Basic] is unlocked by user [admin]
    p.s. Even I re-install my system is English, the word "Client" is shown in Chinese. Is it possible this is the reason? If so, how I change the folder?
    After I saw this message, I checked the folder and there is no such file. I tried to created one, but it disappear after I tried to build dimensions.
    Best Regards,
    Anderson
    Edited by: 854285 on 2011/4/25 上午 3:27HI,
    E:\Hyperion\products\Essbase\eas\Client\dataload.err
    This path is referred to error message .... it will show the errors in that file...
    and one more thing...
    while adding data source to rule file it will ask you provide a path for the error message...there you can see this path...
    Just check dataload.err file after running the rule file...
    have you associated the out line to the rule file ???
    is that rule file validate fine?
    if not associate it and try...
    Regards,
    Prabhas
    Edited by: P on Apr 25, 2011 4:43 PM

  • Write a PKGBUILD file for a binary software

    Hello for all ,I need write a PKGBUILD file for crate an arch-package of bmrt software .I dont understand to much the rules for write a PKGBUILD , but I imagina that is possible write a PKGBUILD file for a compiled software , I look for a document that explain in detail the reference for the sintax in the PKGBUILDS files,Any bode know that?

    You might look at some of the examples that do this already, either in AUR or ABS.
    Some examples:
    various games
    j2re
    flash-plugin
    opera
    acroread
    if you run the command 'abs' as root, you can find these PKGBUILDs in subdirectories of /var/abs.  Hopefully you could adapt one of those to your binary program.
    Dusty

Maybe you are looking for

  • Tecra M9 - PCI Express Error at start-up

    Hello Everybody .. I own a Toshiba Tecra M9 (PTM91E-04R03TEN) http://www.toshiba.ie/innovation/jsp/supportMyProduct.do?service=IE#tab0; On switching on,- Its Showing the Toshiba splach screen and then "PCI Express error." on a black screen I can't ge

  • Add to Library not working in iTunes 12?

    When I add songs to my iTunes library via "Add to Library", they do not appear in my library. I have quit iTunes, logged out, and still nothing appears!

  • Email pdf form to field value and actual email address

    I have a couple of issues I'm trying to solve and am not sure how to proceed. I need the Submit button to pick up a value from a field that the user has filled in and I need to supply an email address. I need to provide the text for the subject line

  • Hiding transparent Flash layer to allow right clicks

    Hi all Working example! I have created a page in Dreamweaver with transparent flash content. My problem is when I position my mouse over the transparent area to copy text or click a link nothing happens, and when I right click over the transparent ar

  • Saving from Photoshop CS5 (5.5) extended to CS5 is it possible?

    I am not finding this solution. Can anyone help? I have the trial version and created a few psd/psb documents but cannot open them on another machine that is running CS5. I used to be able to save to earlier versions previously from all Photoshop ver