summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 20:49:09 +0100
committerLukc <lukc@upyum.com>2010-12-12 20:49:09 +0100
commit7471d6b997b9a41ad5dea38c56b0fe2c64472e23 (patch)
tree5fd5c18cab6f13a4aa0f0467d63b6368e5601d58
parente9c2e681e7286208d5de89d1c6a6c5f08bce3303 (diff)
downloadbase-7471d6b997b9a41ad5dea38c56b0fe2c64472e23.tar.gz
base-7471d6b997b9a41ad5dea38c56b0fe2c64472e23.tar.bz2
base-7471d6b997b9a41ad5dea38c56b0fe2c64472e23.tar.xz
base-7471d6b997b9a41ad5dea38c56b0fe2c64472e23.zip
Recette de which mise à jour.
-rw-r--r--which/.footprint10
-rw-r--r--which/.sha256sum1
-rw-r--r--which/Pkgfile17
3 files changed, 17 insertions, 11 deletions
diff --git a/which/.footprint b/which/.footprint
index 90d183e..9afe6a0 100644
--- a/which/.footprint
+++ b/which/.footprint
@@ -1,6 +1,10 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/which
-drwxr-xr-x root/root usr/man/
-drwxr-xr-x root/root usr/man/man1/
--rw-r--r-- root/root usr/man/man1/which.1.gz
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/info/
+-rw-r--r-- root/root usr/share/info/dir
+-rw-r--r-- root/root usr/share/info/which.info
+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/which.1.bz2
diff --git a/which/.sha256sum b/which/.sha256sum
new file mode 100644
index 0000000..57cadd1
--- /dev/null
+++ b/which/.sha256sum
@@ -0,0 +1 @@
+d417b65c650d88ad26a208293c1c6e3eb60d4b6d847f01ff8f66aca63e2857f8 which-2.20.tar.gz
diff --git a/which/Pkgfile b/which/Pkgfile
index ce9bcd7..51a32c3 100644
--- a/which/Pkgfile
+++ b/which/Pkgfile
@@ -1,18 +1,19 @@
description="Show full path of commands"
-packager=""
-maintainer="CRUX System Team, core-ports at crux dot nu"
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.xs4all.nl/~carlo17/which/"
depends=()
name=which
version=2.20
release=1
-source=(http://www.xs4all.nl/~carlo17/which/which-2.20.tar.gz)
+source=(http://www.xs4all.nl/~carlo17/$name/$name-$version.tar.gz)
build ()
{
- cd $name-$version;
- ./configure --prefix=/usr --mandir=/usr/man;
- make;
- make DESTDIR=$PKG install;
- rm -r $PKG/usr/share
+ cd $name-$version;
+ ./configure \
+ --prefix=$prefix \
+ --mandir=$mandir;
+ make;
+ make DESTDIR=$PKG install;
}