Wana build my own package - how to do that?

hey,
i download the Firefox 3 Beta 3 from Mozilla server http://www.mozilla.com/en-US/products/d … lang=en-US
my question is how can i install it? i need to create PKGBUILD file?
what should i know more?
thanks.

To learn how to make your own packages read the wiki:
http://wiki.archlinux.org/index.php/Makepkg
http://wiki.archlinux.org/index.php/ABS
http://wiki.archlinux.org/index.php/PKGBUILD
For FF3, libgnome is an optional dependancy (I think).  FF3 attempts to look native on all platform and Gnome was chosen for linux. FF2 already used GTK.
Last edited by Allan (2008-03-02 22:28:12)

Similar Messages

  • Builder my own RTSP client

    Hi, guys
    I want to build my own RTSP client,
    I know that JMF2.0 can support RTSP URL, but i want to find a source code which implements RTSP client treatment without using JMF's Manager.createPlayer . Because i need some changes in RTSP treatment
    I have found the source code to implement the RTSP server in Java using simple socket.

    Douglas, any progress?

  • How to build your own install img?

    How do I build my own arch install image...iirc there are tools but I don't know how to use them.
    Also is it possible to use the usb .img installer off of one's harddrive?  I know I can use dd to put it on a partition, but was wondering if it would be able to boot and install properly.

    This is from an email by Dieter to the arch-releng list:
    git clone http://projects.archlinux.org/git/archiso.git
    cd archiso/archiso
    sudo make install #to be packaged later
    cd ../configs/install-iso
    # change version in Makefile
    # if on x86_64, remove intel-536ep and intel-537 from packages.list
    ./buildall.sh
    scp release/* ...somewhere...

  • How to build my own SOAP envelope

    Hi
    after a lot of work I have now realised that my SOAP to SOAP scenario can't use SAP XI std SOAP ENVELOPE on the receiver part.
    How to I build my own SOAP ENV in my RECEIVER payload? iMaybe in the mapping or in the WSDL/XSD?
    Any guides or experienses are welcome
    hope someone can help
    cheers

    Hi Bowie,
    Here is one possible approach...
    1) Set "Do Not Use SOAP Envelope" in your Receiver SOAP Adapter.
    2) Add this xsl as a second step in your interface mapping.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:template match="/">
        <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
          <env:Body>
            <xsl:copy>
              <xsl:apply-templates select="@*|node()"/>
            </xsl:copy>
          </env:Body>
        </env:Envelope>
      </xsl:template>
      <xsl:template match="@*|node()">
        <xsl:copy>
          <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
      </xsl:template>
    </xsl:stylesheet>
    You can then modify the soap envelope nodes above to create what you need.
    -Russ

  • How I build my own libraries of classes/methods in java ?

    How I build my own libraries of classes/methods in java ? how then I refer a functionX() (i mean method) in LibraryX ? can you give a short/brief example of a library with a class with a method and a main method of normal class calling this method (of external's added library's) ?

    Just another cross poster.
    [http://www.java-forums.org/new-java/12389-how-i-build-my-own-libraries-classes-methods-java.html]
    db
    edit And [http://forums.java.net/jive/thread.jspa?messageID=305387]
    Edited by: Darryl.Burke

  • How to build my own LEXER

    Hi :
    I want to build a Text Query Application which bases on Oracle interMedia Text. Besides some default languages the interMedia supports (English, French ...), I need index on my own language document. When I refered to the Oracle Text Reference, I saw that I can use the BASIC_LEXER for English and all other supported whitespace delimited languages. My language is Vietnamese which has whitespace delimiter. The question is that can I build my own language dictionary-lexer (similar to some default dictionaries : English, France, German, Chinese ...) to index my document and how can I do that ? In the documents I refered (Oracle Text Application Developer's Guide and Oracle Text Reference) I could'n find direction for doing this.
    Thanks.

    Hi,
    In 9.2 there is a new feature: USER_LEXER. The USER_LEXER lets you write and plug in your own lexer to handle
    languages or other indexing techniques that Oracle Text does not support. We will be publishing the 9.2 Text technical
    overview in a few days that shows you how to do it.

  • How could I build my own TOOL in Photoshop CS2

    How could I build my own TOOL in Photoshop CS2? Like building a new Brush tool which could draw very fancy lines in Photoshop opened images.

    You can't create a tool in Photoshop, but you can in your own filter plugin (similar to extract or liquify).

  • How to transfer a smartform from $temp package to my own package say "zpack" in abap?

    hi, i am sanjeev.
    earlier i used to save all the objects in local package only. whether it's a program or any class or any user created table.
    but now i have created my own package and want to transfer all of those created objects into my package "zpack". even i transferred all the programs. but the smartforms i cant. so plz help me.
    THanks in advance.

    TC --> SE03
    Select --> Change Object Directory Entries --> Click F8 or Click run button .
    Check 'Check Box' and enter SSFO . Input field enter your Smart form name.
    Under that we have block " Further Restriction" enter existing Package name ex: $TMP is this is saved under temporary folder.
    and click on F8 or Run Button. Then we will get list of object's stored under this package .
    Select required object and click on "Object  Directory ", this will prompted pop asking to enter new package name.
    This will help you to change from one package to your owned package.
    Thanks,
    Venu M B

  • How to build my own policy?

    i need build my own policy to interact with database.
    just tell me where can i get a better reference of this.
    thanks a lot

    http://www-106.ibm.com/developerworks/library/j-jaas/?n-j-442
    This example from IBM is very good however it does more than you may need. Concentrate on the XMLPolicy.java code and corresponding .xml files.
    hope this helps!

  • How can i indclude my own package when using 'javadoc'

    hello,
    i create my own package, say myPackage.
    can i include it when using javadoc
    thanks

    In case you didn't get it from that last answer: You are not supposed to explicitly specify the java files, just the packages (the directories).
    Cut-and-paste from the earlier supplied information:
    Case 3 - Run from any directory on explicit packages in a single directory tree - In this case, it doesn't matter what the current directory is. Run javadoc supplying -sourcepath with the parent directory of the top-level package, and supplying names of one or more packages you want to document:
    C:> javadoc -d C:\home\html -sourcepath C:\home\src java.awt java.awt.event
    If you need to document more than one package, add a ";" and the package after the "C:\home\src" or whatever your package is called.
    -d directory
    Specifies the destination directory where javadoc saves the generated HTML files.
    -sourcepath sourcepathlist
    Specifies the search paths for finding source files (.java)
    best of luck
    -negal

  • Rookie trying to make my own package

    Reading in a real good book - "Thinking in Java" by Bruce Eckel. Really helping me to understand better a lot of the stuff that I had in my Java course at school.
    Got to a section where he's showing how to make your own packages. I'll lift directly:
    Consider, for
    example, creating an alias for System.out.println(�) to reduce
    typing. This can be part of a package called tools:
    //P.java
    // The P.rint & P.rintln shorthand.
    package com.bruceeckel.tools;
    public class P {
    public static void rint(String s) {
    System.out.print(s);
    public static void rintln(String s) {
    System.out.println(s);
    You can use this shorthand to print a
    String either with a newline (P.rintln(�)) or without a
    newline (P.rint(�)).
    So, I cut and pasted right into the text editor I use to practice with, saved and compiled it in a subdirectory off of one of the directories in the CLASSPATH, followed with a little test program:
    //ToolTest.java
    import com.bruceeckel.tools.*;
    public class ToolTest {
    public static void main(String[] args) {
    P.rintln("Available from now on!");
    P.rintln("" + 100); // Force it to be a String
    P.rintln("" + 100L);
    P.rintln("" + 3.14159);
    Here's the result of the compile:
    C:\Thinking in Java\com\bruceeckel\tools>javac ToolTest.java
    ToolTest.java:3: Package com.bruceeckel.tools not found in import.
    import com.bruceeckel.tools.*;
    ^
    1 error
    C:\Thinking in Java\com\bruceeckel\tools>
    At first I tried doing it on my own, making up my own package name, creating my own little source files, but got the same error. So I cut and pasted directly from the book, thinking surely it would work if I used Eckel's own code. Nope.
    Any clue what's going wrong? I've checked the CLASSPATH carefully, it includes
    C:\Thinki~1
    Thanks
    Felecha

    Your classpath should include "C:\Thinking in Java", not C:\Thinki~1.
    Also, your ToolTest.java should be in some other folder than "C:\Thinking in Java\com\bruceeckel\tools" - javac may act weird when it can find the to-be-imported classes in both the current folder and the classpath.
    If ToolTest.java had been in the folder "C:\Thinking in Java" you wouldn't have needed to modify the classpath.

  • Import my own package??!!!

    hello guys,
    I'm having a litle difficulties importing my own package.
    here is my example:
    I have a folder on C:\Users\User\Desktop\test2 in wich u can find a file called "hello.java" and another folder called "hi" which contains a file "hello2.java"
    in the file hello.java i want to create an instance of "hello2" so it is clear that i have to import from hello.java the package containing hello.class
    SO WHAT I DID IS THE FOLLOWING:
    first in enviroment variable i added to my CLASSPATH the path C:\Users\User\Desktop and in the file " hello.java" i wrote at the top:Import test2.hi.hello2
    it is still not working.
    i read somewhere that my package should have the following form: fr.inria.itey which i did not understand.
    can u plz give from my example what is my package name? and finally how to solve the issue
    thank you in advance for your help

    Hi ralfph.
    I suggest using an IDE such as eclipse. It has an auto complete utility that allows autogeneration of import code which is guaranteed to be correct.
    Based on your post, I'm not sure if it is a typo but you mentioned you wrote at the top "Import test2.hi.hello2".
    I would like to know if you got a compile error as "Import" should be typed as import with a small i.

  • Modify\Remove UDI 'build your own page' text

    Hi , 
    I am using UDI wizard to create custom 'Build your own page' type template. Could anyone pls. suggest how to modify\remove 'my First custom page'? from this wizard page? 
    any pointers will be appreciated. Thanks. 

    Hi,
    It is not displayed when your run the UDI or when you run the Preview either actually.. The name used will be the two you supplied when creating the page here:
    So the My First Custom page is just displayed when you edit it.
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • Build my own Connection Pool

    Hi,
    I have to build my own connection pool.
    Any resources and help will be appreciated.
    cheers,
    vjoy

    Hi,
    I have to build my own connection pool.Why?
    Any resources and help will be appreciated.There are some open-source connection poolers, most notably DBCP; you can see how they did it.

  • PHP-building my own shopping cart

    Hi all
    Has anyone tried to build their own shopping cart?
    Besides a secure space on a server, does anyone know a little
    bit about what building a shopping
    cart entails?
    I am using PHP and I would look into integrating the shopping
    Cart with authorize.net...
    Authorize.net has some documentation for developpers about
    this, so I'll look into it, but I just
    wondered if this was something anybody had done, and if this
    was accessible to someone like me (I
    know my PHP pretty good) if this is way over-the-top
    complicated.
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

    thanks a lot for this info gareth
    gareth wrote:
    >>> If there's come particular technology beyond
    PHP, or some specific
    >>> protocol, to thansfer the
    > shopping cart info (including CC number) to the
    institution that processes
    > the transaction.
    >
    > Well HTTPS is always used to encrypt the transaction in
    transite. Apart from
    > that it really depends on the financial institution your
    details with. A
    > large proportion of payment providers actually take the
    card details on
    > their site. You pass across the customers details, name,
    address, order
    > number, order value etc to the provider site, and then
    they take the card
    > details on their site, and then pass back a response to
    you with the order
    > number (or some other unique reference), saying if the
    transaction has
    > succeeded or not. This way, you actually have no contact
    with the credit
    > card details. This method is prefered, as it takes a lot
    of responsibility
    > off you, you don't have to try and store the details
    securely or pass the
    > details securely.
    >
    > Various methods are used by the institutions when
    passing the details. Its
    > always by post, by some provide code that you run all
    the fields through
    > that you send to them with a secret key, which creates a
    hash that you send
    > to them as well. At their end, they run the details
    through the hash
    > generator with your key, and if the two hash values
    don't match then they
    > know the data has been tampered with in transit (eg the
    customer saving your
    > checkout page, changing the order amount, and then
    submitting the data from
    > their own server). They then hash the reponse they send
    back to you, and
    > then you hash it and compare the values, so you can be
    sure the info coming
    > from the payment provider hasn't been tampered with.
    Usually the code is
    > available in a variety of languages, and most give PHP,
    although HSBC use C,
    > which you can run through PHP (although I actually
    created an extension to
    > PHP to generate the hash).
    >
    >> You can always just send POST vars, in the format
    they require, to the
    >> transaction processor, right?
    > Or is there something else at play?
    >
    > Yes, its almost always sent to the institution as a
    simple form POST. You
    > just need to pass a unique value, so that they can pass
    it back and you can
    > link the response to the customers order at your end.
    >
    >> And it's just a matter of knowing how this response
    is formatted, to deal
    >> with it, right?
    >
    > Yes, usually they send the data to an address on your
    server you provide, as
    > POST data. So, its simple to read it using PHP.
    >
    >> thanks for this info... All in all I was just
    wondering what's the big
    >> deal about building a
    > shopping cart, compared to, say, builing a CMS.
    >
    > No problem, to be honest with you, and IMHO its really
    not that difficult,
    > less so than building a complete CMS. It used to be,
    years ago, but the
    > financial institutions have made things easier now, and
    provide all the
    > processing for you. The main problem that put people off
    was security, but
    > nowadays merchants don't take credit card details
    themselves, so its not a
    > major issue.
    >
    > It really depends on the payment provider, some are
    easier than others, the
    > banks own systems tend to be more complex than other
    parties such as
    > Worldpay.
    >
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

Maybe you are looking for