diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/pkg-get/.footprint | 9 | ||||
-rw-r--r-- | base/pkg-get/.md5sum | 2 | ||||
-rw-r--r-- | base/pkg-get/Pkgfile | 6 | ||||
-rw-r--r-- | base/pkg-get/syn | 2 |
4 files changed, 11 insertions, 8 deletions
diff --git a/base/pkg-get/.footprint b/base/pkg-get/.footprint index a4373f7dc..954faef47 100644 --- a/base/pkg-get/.footprint +++ b/base/pkg-get/.footprint @@ -5,7 +5,8 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/pkg-get -rwxr-xr-x root/root usr/bin/pkg-repgen -rwxr-xr-x root/root usr/bin/syn -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man8/ --rw-r--r-- root/root usr/man/man8/pkg-get.8.gz --rw-r--r-- root/root usr/man/man8/pkg-repgen.8.gz +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/pkg-get.8.gz +-rw-r--r-- root/root usr/share/man/man8/pkg-repgen.8.gz diff --git a/base/pkg-get/.md5sum b/base/pkg-get/.md5sum index dedc7916f..c0450d72c 100644 --- a/base/pkg-get/.md5sum +++ b/base/pkg-get/.md5sum @@ -2,4 +2,4 @@ 5ee169f2f99fc501387219b6b96ca9ef pkg-get-0.4.5.tar.gz 10721fb1fe16ab0305320f9278eb1087 pkg-get.conf c4cca630bfcc85a3f3b13497aff01310 pkg-repgen.patch -822d7518ce531572db5f285169e8502b syn +e02b64daa239cf0523bcce110dc39a0e syn diff --git a/base/pkg-get/Pkgfile b/base/pkg-get/Pkgfile index 70a468e88..7af504f5b 100644 --- a/base/pkg-get/Pkgfile +++ b/base/pkg-get/Pkgfile @@ -1,4 +1,4 @@ -# Description: Package management tool for CRUX Linux +# Description: Outil de gestion de paquets binaires pour NuTyX # URL: http://www.varlock.com # Maintainer: Simone Rota, sip at crux dot nu # Packager: Simone Rota, sip at crux dot nu @@ -6,7 +6,7 @@ name=pkg-get version=0.4.5 -release=9 +release=10 source=(http://www.varlock.com/files/$name-$version.tar.gz \ pkg-get-0.4.5-NuTyX-02.patch pkg-get.conf pkg-repgen.patch syn) @@ -16,6 +16,8 @@ ARCH_=`uname -m` patch -Np1 -i ../pkg-repgen.patch patch -Np1 -i ../pkg-get-$version-NuTyX-02.patch make PREFIX=$PKG/usr CFGDIR=$PKG/etc install + mkdir -p $PKG/usr/share + mv $PKG/usr/{man,share/man} install -m 755 ../syn $PKG/usr/bin/syn sed -i "s|CRUX Packages|Paquets NuTyX Architecture $ARCH_|g" $PKG/usr/bin/pkg-repgen sed -i "s|Generated by|Généré par|g" $PKG/usr/bin/pkg-repgen diff --git a/base/pkg-get/syn b/base/pkg-get/syn index 42dd9a8b4..6f0cb6e11 100644 --- a/base/pkg-get/syn +++ b/base/pkg-get/syn @@ -34,7 +34,7 @@ if [ ! -L /depot ]; then else for i in `cat /etc/pkg-get.conf |grep -v ^#|grep http|cut -d "|" -f 1|cut -d" " -f2|cut -d"/" -f4` do - rsync -avuz --delete-before rsync://nutyx.meticul.eu/nutyx/2009/i686/$i/ $Depot/$i/ + rsync -avuz --delete-before rsync://nutyx.meticul.eu/nutyx/2009.1/i686/$i/ $Depot/$i/ done fi |