diff options
author | Lukc <lukc@upyum.com> | 2010-12-12 21:21:02 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-12 21:21:02 +0100 |
commit | cfbbcc7c75f2e74097bf7f8f00895bbf4e70a6d3 (patch) | |
tree | 199acbd7b54a4dfe9220324220caf533f43dea79 /sysvinit/Pkgfile | |
parent | 3ac3127f60e19b7fdaa8cb5a42682ab96046bb90 (diff) | |
download | base-cfbbcc7c75f2e74097bf7f8f00895bbf4e70a6d3.tar.gz base-cfbbcc7c75f2e74097bf7f8f00895bbf4e70a6d3.tar.bz2 base-cfbbcc7c75f2e74097bf7f8f00895bbf4e70a6d3.tar.xz base-cfbbcc7c75f2e74097bf7f8f00895bbf4e70a6d3.zip |
Recette de sysvinit mise à jour.
Diffstat (limited to 'sysvinit/Pkgfile')
-rw-r--r-- | sysvinit/Pkgfile | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/sysvinit/Pkgfile b/sysvinit/Pkgfile index e62acfb..0b3e777 100644 --- a/sysvinit/Pkgfile +++ b/sysvinit/Pkgfile @@ -1,20 +1,22 @@ -description="The Linux System V Init" -packager="" -maintainer="CRUX System Team, core-ports at crux dot nu" +description="The Linux System V Init." +packager="CRUX System Team <core-ports AT crux DOT nu>" +maintainer="Lukc <lukc AT upyum DOT com>" url="https://savannah.nongnu.org/projects/sysvinit/" depends=() +# FIXME: Replace that crappy damned awfull init system by something cool. + name=sysvinit version=2.88 release=1 -source=(http://download.savannah.gnu.org/releases/sysvinit/sysvinit-2.88dsf.tar.bz2) +source=(http://download.savannah.gnu.org/releases/$name/$name-${version}dsf.tar.bz2) build () { - cd $name-${version}dsf; - make; - make ROOT=$PKG MANDIR=/usr/man install; - install -d $PKG/var/log; - touch $PKG/var/log/wtmp; - touch $PKG/var/log/btmp; - chmod 0600 $PKG/var/log/btmp + cd $name-${version}dsf; + make; + make ROOT=$PKG MANDIR=$mandir install; + install -d $PKG/var/log; + touch $PKG/var/log/wtmp; + touch $PKG/var/log/btmp; + chmod 0600 $PKG/var/log/btmp } |