about summary refs log tree commit diff
path: root/pkg/aterm-2.0-build.sh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2003-03-14T16·43+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2003-03-14T16·43+0000
commit8999f923ea1a459b3e4d404745b001323647711a (patch)
tree97b9ca5309e2f34b2f671b6ba178e9d05926c411 /pkg/aterm-2.0-build.sh
parent18ebf518de325c7059648bfd6df464d8d5204bb3 (diff)
* Improved Nix. Resources (package descriptors and other source
  files) are now referenced using their cryptographic hashes.  

  This ensures that if two package descriptors have the same contents,
  then they describe the same package.  This property is not as
  trivial as it sounds: generally import relations cause this property
  not to hold w.r.t. temporality.  But since imports also use hashes
  to reference other packages, equality follows by induction.

Diffstat (limited to 'pkg/aterm-2.0-build.sh')
-rwxr-xr-xpkg/aterm-2.0-build.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkg/aterm-2.0-build.sh b/pkg/aterm-2.0-build.sh
new file mode 100755
index 000000000000..5d65b7878c1c
--- /dev/null
+++ b/pkg/aterm-2.0-build.sh
@@ -0,0 +1,13 @@
+#! /bin/sh
+
+export PATH=$utils/bin
+export LIBRARY_PATH=$glibc/lib
+export CC=$gcc/bin/gcc
+export CFLAGS="-isystem $glibc/include -isystem $kernel/include"
+
+top=`pwd`
+tar xvfz $src
+cd aterm-2.0
+./configure --prefix=$top
+make
+make install