blob: bf06c0bd9cf7b487bdc410dd5561dae636af97ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Description: L'outil pour la production des paquets binaires pour NuTyX
# URL: http://www.nutyx.org
# Maintainer: kiao.no-ip.info/NuTyX/git/?p=pkgmk;a=summary
# Packager: thierryn1 at hispeed dot ch
# Depends on: pkg-get
# Run on:
name=pkgmk
version=0.0.2a
release=1
source=(http://nutyx.meticul.eu/files/$name-info-$version.tar.gz)
build()
{
ARCH_=`uname -m`
cd $name-info-$version
make clean
make all
make DESTDIR=$PKG install
if [ "$ARCH_" == "x86_64" ]; then
sed -i "s/i686/x86_64/" $PKG/usr/bin/pkg-repgen
fi
}
|