diff options
author | Lukc <lukc@upyum.com> | 2010-12-12 17:08:22 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-12 17:08:22 +0100 |
commit | e2a943823a06558fceb9980acbab08c144738142 (patch) | |
tree | 8e1e163e3c59da741d117642d29baac97e23d62b /procps/Pkgfile | |
parent | 46214e280433e4768b761ed6ec0a63d8a3407bde (diff) | |
download | base-e2a943823a06558fceb9980acbab08c144738142.tar.gz base-e2a943823a06558fceb9980acbab08c144738142.tar.bz2 base-e2a943823a06558fceb9980acbab08c144738142.tar.xz base-e2a943823a06558fceb9980acbab08c144738142.zip |
Recette de procps mise à jour.
Diffstat (limited to 'procps/Pkgfile')
-rw-r--r-- | procps/Pkgfile | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/procps/Pkgfile b/procps/Pkgfile index a4e31db..ee71e3d 100644 --- a/procps/Pkgfile +++ b/procps/Pkgfile @@ -1,19 +1,26 @@ -description="The /proc file system utilities" -packager="" -maintainer="CRUX System Team, core-ports at crux dot nu" +description="Linux proc file system utilities." +packager="CRUX System Team <core-ports AT crux DOT nu>" +maintainer="Lukc <lukc AT upyum DOT com>" url="http://procps.sourceforge.net/" depends=(ncurses) name=procps version=3.2.8 release=3 -source=(http://procps.sourceforge.net/procps-3.2.8.tar.gz procps-3.2.8.patch procps-3.2.8-linux-ver-init.patch sysctl.conf) +source=( + http://procps.sourceforge.net/$name-$version.tar.gz + $name-$version.patch + $name-$version-linux-ver-init.patch + sysctl.conf +) build () { - cd $name-$version; - patch -p1 -i $SRC/$name-$version.patch; - patch -p0 -i $SRC/$name-$version-linux-ver-init.patch; - make; - make DESTDIR=$PKG install; - install -D -m644 $SRC/sysctl.conf $PKG/etc/sysctl.conf + cd $name-$version; + patch -p1 -i $SRC/$name-$version.patch; + patch -p0 -i $SRC/$name-$version-linux-ver-init.patch; + make; + make DESTDIR=$PKG install; + install -D -m644 $SRC/sysctl.conf $PKG/etc/sysctl.conf + mkdir $PKG$prefix/share + mv $PKG$prefix/man $PKG$prefix/share/man } |