diff options
Diffstat (limited to 'test/tmpl')
-rw-r--r-- | test/tmpl/aterm-2.0.nix | 5 | ||||
-rw-r--r-- | test/tmpl/atk-1.2.0.nix | 6 | ||||
-rw-r--r-- | test/tmpl/glib-2.2.1.nix | 5 | ||||
-rw-r--r-- | test/tmpl/gnet-1.1.8.nix | 6 | ||||
-rw-r--r-- | test/tmpl/gtk+-2.2.1.nix | 8 | ||||
-rw-r--r-- | test/tmpl/pan-0.13.4.nix | 10 | ||||
-rw-r--r-- | test/tmpl/pango-1.2.1.nix | 6 | ||||
-rw-r--r-- | test/tmpl/pkgconfig-0.15.0.nix | 3 |
8 files changed, 49 insertions, 0 deletions
diff --git a/test/tmpl/aterm-2.0.nix b/test/tmpl/aterm-2.0.nix new file mode 100644 index 000000000000..084f2751004e --- /dev/null +++ b/test/tmpl/aterm-2.0.nix @@ -0,0 +1,5 @@ +# Original sources. +src = ../dist/aterm-2.0.tar.gz + +# Build script. +build = ../dist/aterm-build.sh diff --git a/test/tmpl/atk-1.2.0.nix b/test/tmpl/atk-1.2.0.nix new file mode 100644 index 000000000000..bbe63670cb8a --- /dev/null +++ b/test/tmpl/atk-1.2.0.nix @@ -0,0 +1,6 @@ +pkgconfig <- ./pkgconfig-0.15.0.nix +glib <- ./glib-2.2.1.nix + +src = ../dist/atk-1.2.0.tar.bz2 + +build = ../dist/atk-build.sh diff --git a/test/tmpl/glib-2.2.1.nix b/test/tmpl/glib-2.2.1.nix new file mode 100644 index 000000000000..f1d0d08479c8 --- /dev/null +++ b/test/tmpl/glib-2.2.1.nix @@ -0,0 +1,5 @@ +pkgconfig <- ./pkgconfig-0.15.0.nix + +src = ../dist/glib-2.2.1.tar.bz2 + +build = ../dist/glib-build.sh diff --git a/test/tmpl/gnet-1.1.8.nix b/test/tmpl/gnet-1.1.8.nix new file mode 100644 index 000000000000..4d6ba1f5161b --- /dev/null +++ b/test/tmpl/gnet-1.1.8.nix @@ -0,0 +1,6 @@ +pkgconfig <- ./pkgconfig-0.15.0.nix +glib <- ./glib-2.2.1.nix + +src = ../dist/gnet-1.1.8.tar.gz + +build = ../dist/gnet-build.sh diff --git a/test/tmpl/gtk+-2.2.1.nix b/test/tmpl/gtk+-2.2.1.nix new file mode 100644 index 000000000000..83c2835dfeee --- /dev/null +++ b/test/tmpl/gtk+-2.2.1.nix @@ -0,0 +1,8 @@ +pkgconfig <- ./pkgconfig-0.15.0.nix +glib <- ./glib-2.2.1.nix +atk <- ./atk-1.2.0.nix +pango <- ./pango-1.2.1.nix + +src = ../dist/gtk+-2.2.1.tar.bz2 + +build = ../dist/gtk+-build.sh diff --git a/test/tmpl/pan-0.13.4.nix b/test/tmpl/pan-0.13.4.nix new file mode 100644 index 000000000000..574fb6f4079c --- /dev/null +++ b/test/tmpl/pan-0.13.4.nix @@ -0,0 +1,10 @@ +pkgconfig <- ./pkgconfig-0.15.0.nix +glib <- ./glib-2.2.1.nix +atk <- ./atk-1.2.0.nix +pango <- ./pango-1.2.1.nix +gtk <- ./gtk+-2.2.1.nix +gnet <- ./gnet-1.1.8.nix + +src = ../dist/pan-0.13.4.tar.bz2 + +build = ../dist/pan-build.sh diff --git a/test/tmpl/pango-1.2.1.nix b/test/tmpl/pango-1.2.1.nix new file mode 100644 index 000000000000..4c7e1afe7165 --- /dev/null +++ b/test/tmpl/pango-1.2.1.nix @@ -0,0 +1,6 @@ +pkgconfig <- ./pkgconfig-0.15.0.nix +glib <- ./glib-2.2.1.nix + +src = ../dist/pango-1.2.1.tar.bz2 + +build = ../dist/pango-build.sh diff --git a/test/tmpl/pkgconfig-0.15.0.nix b/test/tmpl/pkgconfig-0.15.0.nix new file mode 100644 index 000000000000..f93d40e3d09d --- /dev/null +++ b/test/tmpl/pkgconfig-0.15.0.nix @@ -0,0 +1,3 @@ +src = ../dist/pkgconfig-0.15.0.tar.gz + +build = ../dist/pkgconfig-build.sh |