Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
Add m4, autoconf, automake and patchelf.
Browse files Browse the repository at this point in the history
  • Loading branch information
tpn committed Jan 12, 2014
1 parent a0f4d8c commit 57c008a
Show file tree
Hide file tree
Showing 8 changed files with 123 additions and 0 deletions.
6 changes: 6 additions & 0 deletions autoconf/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh

./configure --prefix=$PREFIX
make
make install

26 changes: 26 additions & 0 deletions autoconf/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package:
name: autoconf
version: 2.69

source:
fn: autoconf-2.69.tar.gz
url: http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz

build:
number: 1

requirements:
build:
- m4
run:
- m4

test:
commands:
- autoconf --help

about:
home: http://www.gnu.org/software/autoconf/
license: GPL 3

# vim:set ts=8 sw=2 sts=2 tw=78 et:
6 changes: 6 additions & 0 deletions automake/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh

./configure --prefix=$PREFIX
make
make install

28 changes: 28 additions & 0 deletions automake/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package:
name: automake
version: 1.14

source:
fn: automake-1.14.tar.gz
url: http://ftp.gnu.org/gnu/automake/automake-1.14.tar.gz

build:
number: 1

requirements:
build:
- m4
- autoconf
run:
- m4
- autoconf

test:
commands:
- automake --help

about:
home: http://www.gnu.org/software/automake/
license: GPL 3

# vim:set ts=8 sw=2 sts=2 tw=78 et:
6 changes: 6 additions & 0 deletions m4/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh

./configure --prefix=$PREFIX
make
make install

20 changes: 20 additions & 0 deletions m4/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package:
name: m4
version: 1.4.17

source:
fn: m4-1.4.17.tar.gz
url: http://ftp.gnu.org/gnu/m4/m4-1.4.17.tar.gz

build:
number: 0

test:
commands:
- m4 --help

about:
home: http://www.gnu.org/software/m4/
license: GPL 3

# vim:set ts=8 sw=2 sts=2 tw=78 et:
7 changes: 7 additions & 0 deletions patchelf/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh

./bootstrap.sh
./configure --prefix=$PREFIX
make
make install

24 changes: 24 additions & 0 deletions patchelf/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package:
name: patchelf
version: 0.15

source:
git_url: https://github.com/NixOS/patchelf.git
git_tag: 0.6

build:
number: 0

requirements:
build:
- automake

test:
commands:
- patchelf --help

about:
home: http://nixos.org/patchelf.html
license: GPL 3

# vim:set ts=8 sw=2 sts=2 tw=78 et:

0 comments on commit 57c008a

Please sign in to comment.