summaryrefslogtreecommitdiffstats
path: root/time
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 21:14:27 +0100
committerLukc <lukc@upyum.com>2010-12-12 21:14:27 +0100
commit226206903d98871ef7dc92c4499092043f0fbc41 (patch)
tree899a45d387a6b810876c580bbc58316be9937b1c /time
parent42addf3d2e2ebf66f1e95a0745792f85064a0350 (diff)
downloadbase-226206903d98871ef7dc92c4499092043f0fbc41.tar.gz
base-226206903d98871ef7dc92c4499092043f0fbc41.tar.bz2
base-226206903d98871ef7dc92c4499092043f0fbc41.tar.xz
base-226206903d98871ef7dc92c4499092043f0fbc41.zip
Recette de time mise à jour.
Diffstat (limited to 'time')
-rw-r--r--time/.footprint9
-rw-r--r--time/.sha256sum2
-rw-r--r--time/Pkgfile18
3 files changed, 17 insertions, 12 deletions
diff --git a/time/.footprint b/time/.footprint
index a3f8961..5b6928e 100644
--- a/time/.footprint
+++ b/time/.footprint
@@ -1,6 +1,9 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/time
-drwxr-xr-x root/root usr/man/
-drwxr-xr-x root/root usr/man/man1/
--rw-r--r-- root/root usr/man/man1/time.1.gz
+drwxr-xr-x root/root usr/info/
+-rw-r--r-- root/root usr/info/time.info
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/time.1.bz2
diff --git a/time/.sha256sum b/time/.sha256sum
new file mode 100644
index 0000000..589e07c
--- /dev/null
+++ b/time/.sha256sum
@@ -0,0 +1,2 @@
+e37ea79a253bf85a85ada2f7c632c14e481a5fd262a362f6f4fd58e68601496d time-1.7.tar.gz
+59e5b690d1ba49e9c247b8a21babc250a0fb21f12f8357461b69a30aafbc3818 time.1
diff --git a/time/Pkgfile b/time/Pkgfile
index ffc2636..70d7046 100644
--- a/time/Pkgfile
+++ b/time/Pkgfile
@@ -1,20 +1,20 @@
-description="Measures many of the CPU resources that programs use"
-packager=""
-maintainer="CRUX System Team, core-ports at crux dot nu"
+description="Measures many of the CPU resources that programs use."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.gnu.org/software/time/"
depends=()
name=time
version=1.7
release=1
-source=(http://ftp.gnu.org/gnu/time/time-1.7.tar.gz time.1)
+source=(http://ftp.gnu.org/gnu/time/$name-$version.tar.gz time.1)
build ()
{
cd $name-$version;
- ./configure --prefix=/usr;
+ ./configure --prefix=$prefix;
make;
- make prefix=$PKG/usr install;
- rm -rf $PKG/usr/info;
- mkdir -p $PKG/usr/man/man1;
- cp ../$name.1 $PKG/usr/man/man1
+ make prefix=$PKG$prefix install;
+ #rm -rf $PKG/usr/info;
+ mkdir -p $PKG$mandir/man1;
+ cp ../$name.1 $PKG$mandir/man1
}