Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions pkgs/firefox.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
extends: [base_package, libflags]

dependencies:
build: [python, gtk2]

sources:
- key: tar.bz2:sxdyt4xrohcmppmdfgm2ek72srq2yr52
url: http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/31.0/source/firefox-31.0.source.tar.bz2

build_stages:
- name: make
handler: bash
bash: |
mkdir build2 # the 'build' directory already exists, so we name it 'build2'
cd build2
export SHELL=/bin/bash
../configure --prefix=$ARTIFACT
make -j ${HASHDIST_CPU_COUNT}

- name: install
after: make
handler: bash
bash: |
make install